summaryrefslogtreecommitdiff
path: root/cmds-scrub.c
diff options
context:
space:
mode:
authorBrendan Heading <brendanheading@gmail.com>2015-07-29 19:37:37 +0100
committerDavid Sterba <dsterba@suse.com>2015-08-31 19:25:11 +0200
commit38c5382e3f7e02ad3669c8d4a0a37d86e4868e9d (patch)
tree70d319303ee5a8d98214e75742736d7775a416d7 /cmds-scrub.c
parent6936aa4c4301478aac273059c73d79d557d7774a (diff)
btrfs-progs: compilation errors when using musl libc
- limits.h must be included to pick up PATH_MAX. - remove double declaration of BTRFS_DISABLE_BACKTRACE kerncompat.h assumed that if __GLIBC__ was not defined, it could safely define BTRFS_DISABLE_BACKTRACE, however this can be defined by the configure script. Added a check to ensure it is not defined first. Signed-off-by: Brendan Heading <brendanheading@gmail.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'cmds-scrub.c')
-rw-r--r--cmds-scrub.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmds-scrub.c b/cmds-scrub.c
index b7aa8091..5a85dc47 100644
--- a/cmds-scrub.c
+++ b/cmds-scrub.c
@@ -34,6 +34,7 @@
#include <ctype.h>
#include <signal.h>
#include <stdarg.h>
+#include <limits.h>
#include "ctree.h"
#include "ioctl.h"