From 872e18998b723779e1e1b36130bc28e438bd9d1e Mon Sep 17 00:00:00 2001 From: Daniel Lezcano Date: Wed, 24 Feb 2010 10:57:43 +0100 Subject: [PATCH] Fix header inclusion No need to include the lxc_conf structure definition, a forward declaration is enough. Signed-off-by: Daniel Lezcano --- src/lxc/start.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lxc/start.h b/src/lxc/start.h index ba555621d..3816d0cb9 100644 --- a/src/lxc/start.h +++ b/src/lxc/start.h @@ -23,14 +23,14 @@ #ifndef __lxc_state_h #define __lxc_state_h -#include #include +#include -struct lxc_handler { +struct lxc_conf; +struct lxc_handler { pid_t pid; lxc_state_t state; - int sigfd; char nsgroup[MAXPATHLEN]; sigset_t oldmask; -- 2.47.3