Commit bf039b77 authored by Pavel Emelyanov's avatar Pavel Emelyanov

zdtm: Fix compilation after vfork test adding

Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 49448676
...@@ -23,7 +23,7 @@ int main(int argc, char ** argv) ...@@ -23,7 +23,7 @@ int main(int argc, char ** argv)
* in the child */ * in the child */
pid = fork(); pid = fork();
if (pid < 0) { if (pid < 0) {
err("fork failed: %m"); pr_err("fork failed: %m");
exit(1); exit(1);
} }
......
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