Commit 02f1654d authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

No need for curly braces

parent f9b69144
......@@ -437,10 +437,9 @@ cmd_shell(CMD_ARGS)
vtc_dump(vl, 4, "shell", av[1], -1);
r = system(av[1]);
s = WEXITSTATUS(r);
if (s != 0) {
if (s != 0)
vtc_log(vl, 0, "CMD '%s' failed with status %d",
av[1], s);
}
}
/**********************************************************************
......
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