mips: Fix wrong INTERNAL_SYSCALL_ERROR_P check from bc2eb9321e

Checked on mips64-linux-gnu.
This commit is contained in:
Adhemerval Zanella 2020-03-10 17:24:14 -03:00
parent fbaf0bae57
commit d8faf2955a

View File

@ -43,7 +43,7 @@ __fxstatat64 (int vers, int fd, const char *file, struct stat64 *st, int flag)
struct kernel_stat kst;
result = INTERNAL_SYSCALL_CALL (newfstatat, fd, file, &kst, flag);
if (__glibc_unlikely (INTERNAL_SYSCALL_ERROR_P (result)))
if (!__glibc_likely (INTERNAL_SYSCALL_ERROR_P (result)))
return __xstat64_conv (vers, &kst, st);
else
{