2003-04-26  Andreas Schwab  <schwab@suse.de>

	* elf/dl-close.c (remove_slotinfo): Fix missing parens.
This commit is contained in:
Ulrich Drepper 2003-04-26 20:14:27 +00:00
parent a52bb6001a
commit 06a04e0924
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-04-26 Andreas Schwab <schwab@suse.de>
* elf/dl-close.c (remove_slotinfo): Fix missing parens.
2003-04-25 Ulrich Drepper <drepper@redhat.com>
* nscd/cache.c (cache_search): Keep track of how many chain links

View File

@ -80,7 +80,7 @@ remove_slotinfo (size_t idx, struct dtv_slotinfo_list *listp, size_t disp,
return true;
}
while (idx - disp > disp == 0 ? 1 + GL(dl_tls_static_nelem) : 0)
while (idx - disp > (disp == 0 ? 1 + GL(dl_tls_static_nelem) : 0))
{
--idx;