diff options
Diffstat (limited to 'rpt.c')
-rw-r--r-- | rpt.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -48,10 +48,11 @@ print_version() void exit_on_error(int status) { - if (WIFEXITED(status)) + if (!status) return; - fprintf(stderr, "Process exited with status %d, aborting.\n", status); + fprintf(stderr, "Child process exited with status %d, aborting.\n", + status); exit(1); } |