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.h | |
parent | 6d59961d6d5ce91529a17bdad380ee78fa866564 (diff) | |
download | bfs-7e5357a1cf40ebaa7ffaeebfd3a88c3ba93eb1a7.tar.xz |
style: Don't use tabs to indent preprocessor directives
Diffstat (limited to 'src/stat.h')
-rw-r--r-- | src/stat.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -17,7 +17,7 @@ #include <time.h> #if BFS_USE_SYS_PARAM_H -# include <sys/param.h> +# include <sys/param.h> #endif /** @@ -61,11 +61,11 @@ enum bfs_stat_flags { }; #ifdef DEV_BSIZE -# define BFS_STAT_BLKSIZE DEV_BSIZE +# define BFS_STAT_BLKSIZE DEV_BSIZE #elif defined(S_BLKSIZE) -# define BFS_STAT_BLKSIZE S_BLKSIZE +# define BFS_STAT_BLKSIZE S_BLKSIZE #else -# define BFS_STAT_BLKSIZE 512 +# define BFS_STAT_BLKSIZE 512 #endif /** |