Skip to content
Snippets Groups Projects
Commit 39fd4817 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

testProcess: fix another clang-tidy warning

parent 5ada375f
No related branches found
No related tags found
No related merge requests found
......@@ -722,9 +722,8 @@ int main(int argc, const char* argv[])
int r =
runChild(cmd, state, exception, value, 0, 1, 0, timeout, 0, 1, 0, 0, 0);
return r;
} else {
/* Improper usage. */
fprintf(stdout, "Usage: %s <test number>\n", argv[0]);
return 1;
}
/* Improper usage. */
fprintf(stdout, "Usage: %s <test number>\n", argv[0]);
return 1;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment