mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-11 11:50:06 +00:00
mips: Fix wrong INTERNAL_SYSCALL_ERROR_P check from bc2eb9321e
Checked on mips64-linux-gnu.
This commit is contained in:
parent
fbaf0bae57
commit
d8faf2955a
@ -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
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user