coverity: #1435198

Unchecked return value Signed-off-by: 's avatarChristian Brauner <christian.brauner@ubuntu.com>
parent c7da16f5
...@@ -109,7 +109,7 @@ static void create_helpfn(const struct lxc_arguments *args) ...@@ -109,7 +109,7 @@ static void create_helpfn(const struct lxc_arguments *args)
pid = fork(); pid = fork();
if (pid) { if (pid) {
wait_for_pid(pid); (void)wait_for_pid(pid);
return; return;
} }
......
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