From: Ulrich Drepper Date: Wed, 11 Dec 2002 00:49:28 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_3_2~579 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=9cfd817252c721e049fd26efb5c150208accc81c;p=glibc.git Update. 2002-12-10 Ulrich Drepper * 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. --- diff --git a/ChangeLog b/ChangeLog index f7962faaf7..9676832c36 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2002-12-10 Ulrich Drepper + + * 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 * elf/tst-array1.c (preinit_array, init_array, fini_array): diff --git a/elf/tst-tls7.c b/elf/tst-tls7.c index 4f785fe78e..37f1a63e16 100644 --- a/elf/tst-tls7.c +++ b/elf/tst-tls7.c @@ -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; }