diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-11 00:49:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-11 00:49:28 +0000 |
commit | 9cfd817252c721e049fd26efb5c150208accc81c (patch) | |
tree | d638fc96158718c6b4066326da365d63cf963470 /elf/tst-tls7.c | |
parent | 75cddafe47966533578464e08eb7113bab3e7719 (diff) | |
download | glibc-9cfd817252c721e049fd26efb5c150208accc81c.tar glibc-9cfd817252c721e049fd26efb5c150208accc81c.tar.gz glibc-9cfd817252c721e049fd26efb5c150208accc81c.tar.bz2 glibc-9cfd817252c721e049fd26efb5c150208accc81c.zip |
Update.
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.
Diffstat (limited to 'elf/tst-tls7.c')
-rw-r--r-- | elf/tst-tls7.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |