From: Daniel Lezcano Date: Thu, 16 Jul 2009 14:38:15 +0000 (+0200) Subject: Remove useless initialization X-Git-Tag: lxc_0_6_3~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cdfeda48d2f112cef5f300538e77e5b81b8c80a4;p=thirdparty%2Flxc.git Remove useless initialization The structure is cleared by the lxc_init function. Signed-off-by: Daniel Lezcano --- diff --git a/src/lxc/start.c b/src/lxc/start.c index 0c72c1a60..6d1f8404e 100644 --- a/src/lxc/start.c +++ b/src/lxc/start.c @@ -599,7 +599,7 @@ out_abort: int lxc_start(const char *name, char *const argv[]) { - struct lxc_handler handler = { 0 }; + struct lxc_handler handler; int err = -1; int status;