summaryrefslogtreecommitdiff
path: root/btrfs-list.c
diff options
context:
space:
mode:
authorZach Brown <zab@redhat.com>2013-08-14 16:16:32 -0700
committerDavid Sterba <dsterba@suse.cz>2013-09-03 19:41:01 +0200
commit7eab7f2a9cf0d261cb49fdd440828370db5af72a (patch)
tree0555baf4ebd344b24a902338bc515826a832b3a4 /btrfs-list.c
parentdfc66e3c9302470278e6a38c6a5c833153b99922 (diff)
btrfs-progs: remove __CHECKER__ from main code
__CHECKER__ is only for the type juggling used to tell sparse which types need conversion between address spaces. It is not OK to use to change the code that gets checked to avoid bugs elsewhere in the build infrastructure. We want to check the code that builds when the checker isn't enabled. Signed-off-by: Zach Brown <zab@redhat.com> Signed-off-by: David Sterba <dsterba@suse.cz> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
Diffstat (limited to 'btrfs-list.c')
-rw-r--r--btrfs-list.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/btrfs-list.c b/btrfs-list.c
index 072a5927..214cb450 100644
--- a/btrfs-list.c
+++ b/btrfs-list.c
@@ -17,11 +17,9 @@
*/
#define _GNU_SOURCE
-#ifndef __CHECKER__
#include <sys/ioctl.h>
#include <sys/mount.h>
#include "ioctl.h"
-#endif
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>