summaryrefslogtreecommitdiffstats
path: root/src/stat.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2023-05-03 09:29:19 -0400
committerTavian Barnes <tavianator@tavianator.com>2023-05-03 09:29:19 -0400
commit7e5357a1cf40ebaa7ffaeebfd3a88c3ba93eb1a7 (patch)
tree5a792a12d92518d2250611e05332f9904307f157 /src/stat.h
parent6d59961d6d5ce91529a17bdad380ee78fa866564 (diff)
downloadbfs-7e5357a1cf40ebaa7ffaeebfd3a88c3ba93eb1a7.tar.xz
style: Don't use tabs to indent preprocessor directives
Diffstat (limited to 'src/stat.h')
-rw-r--r--src/stat.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stat.h b/src/stat.h
index 7a70146..e08dd4d 100644
--- a/src/stat.h
+++ b/src/stat.h
@@ -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
/**