about summary refs log tree commit diff
path: root/elf
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-04-26 20:14:27 +0000
committerUlrich Drepper <drepper@redhat.com>2003-04-26 20:14:27 +0000
commit06a04e0924caa0ab4ac719e31c86f53501fc297d (patch)
treed0c8a339770b06a326bdd81466a8271928119f51 /elf
parenta52bb6001ae3e4e467dd5bc196852ee217c956b8 (diff)
downloadglibc-06a04e0924caa0ab4ac719e31c86f53501fc297d.tar.gz
glibc-06a04e0924caa0ab4ac719e31c86f53501fc297d.tar.xz
glibc-06a04e0924caa0ab4ac719e31c86f53501fc297d.zip
Update.
2003-04-26  Andreas Schwab  <schwab@suse.de>

	* elf/dl-close.c (remove_slotinfo): Fix missing parens.
Diffstat (limited to 'elf')
-rw-r--r--elf/dl-close.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-close.c b/elf/dl-close.c
index 1e6dd1255a..78b143f8ec 100644
--- a/elf/dl-close.c
+++ b/elf/dl-close.c
@@ -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;