From a984eb367c032dbe2577f01238c3d1268526be70 Mon Sep 17 00:00:00 2001 From: Kacper Date: Thu, 25 Dec 2025 19:24:38 +0100 Subject: Clang-tidy fixes --- include/arch/x86_64/linux/fcntl.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'include/arch/x86_64/linux/fcntl.h') diff --git a/include/arch/x86_64/linux/fcntl.h b/include/arch/x86_64/linux/fcntl.h index 6339c5f1..e7f1e019 100644 --- a/include/arch/x86_64/linux/fcntl.h +++ b/include/arch/x86_64/linux/fcntl.h @@ -135,11 +135,9 @@ * These flags are currently statx(2)-specific, but they could be made generic * in the future and so they should not be used for other per-syscall flags. */ -#define AT_STATX_SYNC_TYPE \ - 0x6000 /* Type of synchronisation required from statx() */ +#define AT_STATX_SYNC_TYPE 0x6000 /* Type of synchronisation required from statx() */ #define AT_STATX_SYNC_AS_STAT 0x0000 /* - Do whatever stat() does */ -#define AT_STATX_FORCE_SYNC \ - 0x2000 /* - Force the attributes to be sync'd with the server */ +#define AT_STATX_FORCE_SYNC 0x2000 /* - Force the attributes to be sync'd with the server */ #define AT_STATX_DONT_SYNC \ 0x4000 /* - Don't sync attributes with the server \ */ -- cgit v1.2.3