diff options
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-lookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/dl-lookup.c b/elf/dl-lookup.c index 7ac87702a4..16e00b0485 100644 --- a/elf/dl-lookup.c +++ b/elf/dl-lookup.c @@ -102,7 +102,7 @@ add_dependency (struct link_map *undef_map, struct link_map *map) if (list[i] == map) break; - if (__builtin_expect (i, act) == act) + if (__builtin_expect (i == act, 1)) { /* No normal dependency. See whether we already had to add it to the special list of dynamic dependencies. */ |