diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-05-03 09:29:19 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-05-03 09:29:19 -0400 |
commit | 7e5357a1cf40ebaa7ffaeebfd3a88c3ba93eb1a7 (patch) | |
tree | 5a792a12d92518d2250611e05332f9904307f157 /src/stat.c | |
parent | 6d59961d6d5ce91529a17bdad380ee78fa866564 (diff) | |
download | bfs-7e5357a1cf40ebaa7ffaeebfd3a88c3ba93eb1a7.tar.xz |
style: Don't use tabs to indent preprocessor directives
Diffstat (limited to 'src/stat.c')
-rw-r--r-- | src/stat.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -13,15 +13,15 @@ #include <sys/stat.h> #if defined(STATX_BASIC_STATS) && (!__ANDROID__ || __ANDROID_API__ >= 30) -# define BFS_LIBC_STATX true +# define BFS_LIBC_STATX true #elif __linux__ -# include <linux/stat.h> -# include <sys/syscall.h> -# include <unistd.h> +# include <linux/stat.h> +# include <sys/syscall.h> +# include <unistd.h> #endif #if BFS_LIBC_STATX || defined(__NR_statx) -# define BFS_STATX true +# define BFS_STATX true #endif const char *bfs_stat_field_name(enum bfs_stat_field field) { |