From: Tycho Andersen Date: Mon, 7 Dec 2015 23:51:34 +0000 (-0700) Subject: c/r: remove random line continuations X-Git-Tag: lxc-2.0.0.beta1~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa07124900989e1a2e617659093da293b583470f;p=thirdparty%2Flxc.git c/r: remove random line continuations No idea how these got there, but let's get rid of them since they're weird. Signed-off-by: Tycho Andersen Acked-by: Serge E. Hallyn --- diff --git a/src/lxc/criu.c b/src/lxc/criu.c index c0ce9650a..aa1b52ca2 100644 --- a/src/lxc/criu.c +++ b/src/lxc/criu.c @@ -184,9 +184,9 @@ void exec_criu(struct criu_opts *opts) additional = lxc_list_len(&opts->c->lxc_conf->network) * 2; - m = realloc(argv, (argc + additional + 1) * sizeof(*argv)); \ - if (!m) \ - goto err; \ + m = realloc(argv, (argc + additional + 1) * sizeof(*argv)); + if (!m) + goto err; argv = m; lxc_list_for_each(it, &opts->c->lxc_conf->network) {