Commit fa071249 by Tycho Andersen Committed by Stéphane Graber

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: 's avatarTycho Andersen <tycho.andersen@canonical.com> Acked-by: 's avatarSerge E. Hallyn <serge.hallyn@ubuntu.com>
parent aef3d51e
...@@ -184,9 +184,9 @@ void exec_criu(struct criu_opts *opts) ...@@ -184,9 +184,9 @@ void exec_criu(struct criu_opts *opts)
additional = lxc_list_len(&opts->c->lxc_conf->network) * 2; additional = lxc_list_len(&opts->c->lxc_conf->network) * 2;
m = realloc(argv, (argc + additional + 1) * sizeof(*argv)); \ m = realloc(argv, (argc + additional + 1) * sizeof(*argv));
if (!m) \ if (!m)
goto err; \ goto err;
argv = m; argv = m;
lxc_list_for_each(it, &opts->c->lxc_conf->network) { lxc_list_for_each(it, &opts->c->lxc_conf->network) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment