mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
mips: Fix wrong INTERNAL_SYSCALL_ERROR_P check from bc2eb9321e
Checked on mips64-linux-gnu.
This commit is contained in:
@ -43,7 +43,7 @@ __fxstatat64 (int vers, int fd, const char *file, struct stat64 *st, int flag)
|
|||||||
struct kernel_stat kst;
|
struct kernel_stat kst;
|
||||||
|
|
||||||
result = INTERNAL_SYSCALL_CALL (newfstatat, fd, file, &kst, flag);
|
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);
|
return __xstat64_conv (vers, &kst, st);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user