aboutsummaryrefslogtreecommitdiff
path: root/elf/ldconfig.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/ldconfig.c')
-rw-r--r--elf/ldconfig.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/ldconfig.c b/elf/ldconfig.c
index fbdd814edf..deb72956b7 100644
--- a/elf/ldconfig.c
+++ b/elf/ldconfig.c
@@ -820,7 +820,7 @@ search_dir (const struct dir_entry *entry)
new_entry->next = NULL;
if (!is_link
&& direntry->d_type != DT_UNKNOWN
- && __builtin_expect (lstat64 (real_file_name, &lstat_buf), 0))
+ && __glibc_unlikely (lstat64 (real_file_name, &lstat_buf) != 0))
{
error (0, errno, _("Cannot lstat %s"), file_name);
free (new_entry->path);
@@ -852,7 +852,7 @@ search_dir (const struct dir_entry *entry)
/* Call lstat64 if not done yet. */
if (!is_link
&& direntry->d_type != DT_UNKNOWN
- && __builtin_expect (lstat64 (real_file_name, &lstat_buf), 0))
+ && __glibc_unlikely (lstat64 (real_file_name, &lstat_buf) != 0))
{
error (0, errno, _("Cannot lstat %s"), file_name);
continue;