From: Daniel Lezcano Date: Tue, 12 Oct 2010 13:11:45 +0000 (+0200) Subject: Fix compilation error on fc12 X-Git-Tag: lxc-0.7.3~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b3ecde1ec3d7e7a1297d78746ef2604e00c60525;p=thirdparty%2Flxc.git Fix compilation error on fc12 The capability header makes the inclusion of the loop header to fail. Moving the inclusion of loop.h before capability.h fixes the problem. Signed-off-by: Daniel Lezcano --- diff --git a/src/lxc/conf.c b/src/lxc/conf.c index e408120cf..e4e4bb5aa 100644 --- a/src/lxc/conf.c +++ b/src/lxc/conf.c @@ -33,6 +33,8 @@ #include #include +#include + #include #include #include @@ -50,8 +52,6 @@ #include #include -#include - #include "network.h" #include "error.h" #include "parse.h"