summaryrefslogtreecommitdiffstats
path: root/src/stat.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2023-05-16 16:52:20 -0400
committerTavian Barnes <tavianator@tavianator.com>2023-05-16 16:52:20 -0400
commita1231458e25a6b1d6e6a600d59ca1b252d65db1d (patch)
treeeb610856411cac63496798533a152fe50fe3c5a9 /src/stat.c
parentca8274a20d4c50706f2d40bfc58cba09a9a5c713 (diff)
downloadbfs-a1231458e25a6b1d6e6a600d59ca1b252d65db1d.tar.xz
Use SYS_* instead of __NR_*
Diffstat (limited to 'src/stat.c')
-rw-r--r--src/stat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stat.c b/src/stat.c
index 7973d71..50ea345 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -19,7 +19,7 @@
# include <unistd.h>
#endif
-#if BFS_LIBC_STATX || defined(__NR_statx)
+#if BFS_LIBC_STATX || defined(SYS_statx)
# define BFS_STATX true
#endif
@@ -141,7 +141,7 @@ static int bfs_statx(int at_fd, const char *at_path, int at_flags, unsigned int
#if BFS_LIBC_STATX
return statx(at_fd, at_path, at_flags, mask, buf);
#else
- return syscall(__NR_statx, at_fd, at_path, at_flags, mask, buf);
+ return syscall(SYS_statx, at_fd, at_path, at_flags, mask, buf);
#endif
}