diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/fxstatat.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/fxstatat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/fxstatat.c b/sysdeps/unix/sysv/linux/fxstatat.c index 3eb898e322..937fec45c2 100644 --- a/sysdeps/unix/sysv/linux/fxstatat.c +++ b/sysdeps/unix/sysv/linux/fxstatat.c @@ -37,7 +37,7 @@ int __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag) { int result; -#ifdef STAT_IS_KERNEL_STAT +#if STAT_IS_KERNEL_STAT # define kst (*st) #else struct kernel_stat kst; @@ -46,7 +46,7 @@ __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag) result = INTERNAL_SYSCALL_CALL (newfstatat, fd, file, &kst, flag); if (!__glibc_likely (INTERNAL_SYSCALL_ERROR_P (result))) { -#ifdef STAT_IS_KERNEL_STAT +#if STAT_IS_KERNEL_STAT return 0; #else return __xstat_conv (vers, &kst, st); |