From 595538976b5d13ea0bcff73e05a9b6fd6cddaee5 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 20 Nov 2000 17:40:29 +0000 Subject: Update. 2000-11-20 Jakub Jelinek * iconvdata/bug-iconv2.c (main): Use %zd in format string. * io/test-lfs.c (do_test): Cast statbuf.st_size to long long. * malloc/tst-valloc.c (main): Cast valloc return value to long. * malloc/tst-obstack.c (verbose_malloc): Use %zd in format string. * math/test-fpucw.c (main): Use %lx in format string, cast control words to long. * stdio-common/tst-fmemopen.c (main): Use %td in format strings. * stdlib/tst-strtol.c (tests): Avoid (bogus?) decimal constant is so large that it is unsigned warning. * sysdeps/unix/sysv/linux/sparc/bits/types.h (__ssize_t): Changing it to long on sparc64. 2000-11-20 Andreas Jaeger * nscd/nscd.h (termination_handler): Add noreturn attribute. (receiv_print_stats): Likewise. * elf/ldconfig.c (path_hwcap): Cast -1 for proper comparison. --- linuxthreads/Examples/ex11.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'linuxthreads/Examples/ex11.c') diff --git a/linuxthreads/Examples/ex11.c b/linuxthreads/Examples/ex11.c index fb09d64561..a01d18db36 100644 --- a/linuxthreads/Examples/ex11.c +++ b/linuxthreads/Examples/ex11.c @@ -128,7 +128,8 @@ main (void) for (n = 0; n < NWRITERS; ++n) { - int err = pthread_create (&thwr[n], NULL, writer_thread, (void *) n); + int err = pthread_create (&thwr[n], NULL, writer_thread, + (void *) (long int) n); if (err != 0) error (EXIT_FAILURE, err, "cannot create writer thread"); @@ -136,7 +137,8 @@ main (void) for (n = 0; n < NREADERS; ++n) { - int err = pthread_create (&thrd[n], NULL, reader_thread, (void *) n); + int err = pthread_create (&thrd[n], NULL, reader_thread, + (void *) (long int) n); if (err != 0) error (EXIT_FAILURE, err, "cannot create reader thread"); -- cgit v1.2.3