]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 11 Dec 2002 00:49:28 +0000 (00:49 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 11 Dec 2002 00:49:28 +0000 (00:49 +0000)
2002-12-10  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/posix/sigpause.c: Define all functions as weak.

* elf/tst-tls7.c (do_test): Adjustments for l_tls_modid being of
type size_t.

ChangeLog
elf/tst-tls7.c

index f7962faaf76d100a69d963a7770adea548f0a8b1..9676832c36bb89d9180e91a6cc0ee7230fdbc6d5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2002-12-10  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/posix/sigpause.c: Define all functions as weak.
+
+       * elf/tst-tls7.c (do_test): Adjustments for l_tls_modid being of
+       type size_t.
+
 2002-12-10  Jakub Jelinek  <jakub@redhat.com>
 
        * elf/tst-array1.c (preinit_array, init_array, fini_array):
index 4f785fe78e19577d70a7191145dcb1386b91f1ca..37f1a63e16465294b236c2f0bf10f59f450388f2 100644 (file)
@@ -32,9 +32,9 @@ do_test (void)
         time.  The value of the first round is used.  */
       if (modid == -1)
        modid = ((struct link_map *) h)->l_tls_modid;
-      else if (((struct link_map *) h)->l_tls_modid != modid)
+      else if (((struct link_map *) h)->l_tls_modid != (size_t) modid)
        {
-         printf ("round %d: modid now %d, initially %d\n",
+         printf ("round %d: modid now %zu, initially %d\n",
                  i, ((struct link_map *) h)->l_tls_modid, modid);
          result = 1;
        }
This page took 0.044551 seconds and 5 git commands to generate.