diff options
Diffstat (limited to 'resolv/gai_suspend.c')
-rw-r--r-- | resolv/gai_suspend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resolv/gai_suspend.c b/resolv/gai_suspend.c index 3ee6a08..a86bd43 100644 --- a/resolv/gai_suspend.c +++ b/resolv/gai_suspend.c @@ -141,7 +141,7 @@ gai_suspend (const struct gaicb *const list[], int ent, /* An error occurred. Possibly it's EINTR. We have to translate the timeout error report of `pthread_cond_timedwait' to the form expected from `gai_suspend'. */ - if (__builtin_expect (result, ETIMEDOUT) == ETIMEDOUT) + if (__glibc_likely (result == ETIMEDOUT)) result = EAI_AGAIN; else if (result == EINTR) result = EAI_INTR; |