From cdfeda48d2f112cef5f300538e77e5b81b8c80a4 Mon Sep 17 00:00:00 2001 From: Daniel Lezcano Date: Thu, 16 Jul 2009 16:38:15 +0200 Subject: [PATCH] Remove useless initialization The structure is cleared by the lxc_init function. Signed-off-by: Daniel Lezcano --- src/lxc/start.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2