]> git.ipfire.org Git - thirdparty/lxc.git/commitdiff
c/r: remove random line continuations
authorTycho Andersen <tycho.andersen@canonical.com>
Mon, 7 Dec 2015 23:51:34 +0000 (16:51 -0700)
committerStéphane Graber <stgraber@ubuntu.com>
Thu, 10 Dec 2015 03:56:52 +0000 (22:56 -0500)
No idea how these got there, but let's get rid of them since they're weird.

Signed-off-by: Tycho Andersen <tycho.andersen@canonical.com>
Acked-by: Serge E. Hallyn <serge.hallyn@ubuntu.com>
src/lxc/criu.c

index c0ce9650a8f7bf066c23d6c444c5cb1d8af9d85e..aa1b52ca25faa084a354dcd088492172efcb23e6 100644 (file)
@@ -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) {