diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-10-08 10:58:22 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-10-10 11:18:06 -0400 |
commit | 271f6f44ea645c74f3130f03311b65e5dbdc7139 (patch) | |
tree | 6a1085d9946188f0b01e8f67333360c92a013d1b /src/fsade.h | |
parent | 7122b28296f13d0a3401e79691d6f653153b79b5 (diff) | |
download | bfs-271f6f44ea645c74f3130f03311b65e5dbdc7139.tar.xz |
Fix some -Wundef-prefix warnings
Diffstat (limited to 'src/fsade.h')
-rw-r--r-- | src/fsade.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fsade.h b/src/fsade.h index edac68b..fbe02d8 100644 --- a/src/fsade.h +++ b/src/fsade.h @@ -19,6 +19,8 @@ #if __has_include(<sys/extattr.h>) || __has_include(<sys/xattr.h>) # define BFS_CAN_CHECK_XATTRS true +#else +# define BFS_CAN_CHECK_XATTRS false #endif struct BFTW; |