mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* elf/dl-load.c: Fix typo in comment. Add a few more __builtin_expect.
This commit is contained in:
@ -1,5 +1,9 @@
|
||||
2002-08-25 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/pthread/timer_routines.c (thread_func): Make the
|
||||
compiler happy by adding a return statement which will never be
|
||||
reached.
|
||||
|
||||
* tst-context.c (main): Cast to long before casting to pointer.
|
||||
|
||||
* Examples/ex17.c (main): Use correct format string.
|
||||
|
@ -450,6 +450,8 @@ thread_func (void *arg)
|
||||
forever - but we have to add it for proper nesting. */
|
||||
pthread_cleanup_pop (1);
|
||||
|
||||
/* NOTREACHED */
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user