commit 6922f1be08111d889b0585b763b08f92d7a55e05 Author: Tianon Gravi Date: Sat Feb 1 21:40:51 2014 -0700 Remove reference to , and instead use like we're supposed to (from btrfs-progs) This fixes compilation issues when btrfs.h isn't available (because we just need the relevant structs, which for userspace programs are supposed to come from btrfs-progs instead of the kernel headers). Docker-DCO-1.1-Signed-off-by: Andrew Page (github: tianon) diff --git a/daemon/graphdriver/btrfs/btrfs.go b/daemon/graphdriver/btrfs/btrfs.go index a50f11f..3d27909 100644 --- a/daemon/graphdriver/btrfs/btrfs.go +++ b/daemon/graphdriver/btrfs/btrfs.go @@ -4,15 +4,11 @@ package btrfs /* #include -#include -#include -#include -#include #include -#include - +#include */ import "C" + import ( "fmt" "github.com/dotcloud/docker/daemon/graphdriver"