diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-06 21:15:46 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-06 21:15:46 +0000 |
commit | a4548cea4aac71acf6c9914058587ff42a06f22d (patch) | |
tree | 2d8ad97fcf170c78fe157e8b82fcfb555cbaecbc /nptl/init.c | |
parent | d3c9f895257e50335e874ca08ad6efcc0abea6d7 (diff) | |
download | glibc-a4548cea4aac71acf6c9914058587ff42a06f22d.tar glibc-a4548cea4aac71acf6c9914058587ff42a06f22d.tar.gz glibc-a4548cea4aac71acf6c9914058587ff42a06f22d.tar.bz2 glibc-a4548cea4aac71acf6c9914058587ff42a06f22d.zip |
Update.
* init.c (__pthread_initialize_minimal): Correct INIT_LIST_HEAD use.
Diffstat (limited to 'nptl/init.c')
-rw-r--r-- | nptl/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/init.c b/nptl/init.c index d9c315c1da..de34e217f9 100644 --- a/nptl/init.c +++ b/nptl/init.c @@ -124,7 +124,7 @@ __pthread_initialize_minimal (void) #endif /* Initialize the list of all running threads with the main thread. */ - INIT_LIST_HEAD (__stack_user); + INIT_LIST_HEAD (&__stack_user); list_add (&pd->header.data.list, &__stack_user); |