]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 26 Apr 2003 20:14:27 +0000 (20:14 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 26 Apr 2003 20:14:27 +0000 (20:14 +0000)
2003-04-26  Andreas Schwab  <schwab@suse.de>

* elf/dl-close.c (remove_slotinfo): Fix missing parens.

ChangeLog
elf/dl-close.c

index 329ea7d097a7d3e17a49c8b8a6122757a46f2cad..359f7ed5d43f291a028dde6fa3ca54b0fe300ec3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 1e6dd1255a769c82c9d727b269ed9fffffa86910..78b143f8ecf1995865608aa8e3931db11223cc5f 100644 (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;