diff options
author | Roland McGrath <roland@gnu.org> | 2002-08-29 01:42:29 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-08-29 01:42:29 +0000 |
commit | 45061a153c431bb3127d2a3c7fbb6abfbec0a505 (patch) | |
tree | 33f498dbf599fd76063751bf7bd3a88aedea3fa2 /linuxthreads | |
parent | 089c7a2635b1b898c291bfa26c764078e514e7fa (diff) | |
download | glibc-45061a153c431bb3127d2a3c7fbb6abfbec0a505.tar.gz glibc-45061a153c431bb3127d2a3c7fbb6abfbec0a505.tar.xz glibc-45061a153c431bb3127d2a3c7fbb6abfbec0a505.zip |
* NEWS: Added 2.2.6 text from 2.2 branch version.
Diffstat (limited to 'linuxthreads')
-rw-r--r-- | linuxthreads/sysdeps/pthread/timer_routines.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linuxthreads/sysdeps/pthread/timer_routines.c b/linuxthreads/sysdeps/pthread/timer_routines.c index 86fae2af4c..b88c5e0556 100644 --- a/linuxthreads/sysdeps/pthread/timer_routines.c +++ b/linuxthreads/sysdeps/pthread/timer_routines.c @@ -490,7 +490,7 @@ __timer_thread_start (struct thread_node *thread) thread->exists = 1; if (pthread_create (&thread->id, &thread->attr, - (void (*) (void *)) thread_func, thread) != 0) + (void *(*) (void *)) thread_func, thread) != 0) { thread->exists = 0; retval = -1; |