diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2017-01-27 12:15:11 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2017-01-27 12:15:11 +0200 |
commit | 7fde574084ff20787460118ae8d6a433f36b919a (patch) | |
tree | 50edd7a9742a3a628336c89dd16a1dff39615820 /debug.c | |
parent | e8c6871e80524e928954b01ff50030a11b2a94eb (diff) | |
parent | 8352dc592cf635a731f7f91d183c0679b3fc4fd2 (diff) | |
download | egawk-7fde574084ff20787460118ae8d6a433f36b919a.tar.gz egawk-7fde574084ff20787460118ae8d6a433f36b919a.tar.bz2 egawk-7fde574084ff20787460118ae8d6a433f36b919a.zip |
Merge branch 'master' into feature/stringfix
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2962,9 +2962,9 @@ do_run(CMDARG *arg ATTRIBUTE_UNUSED, int cmd ATTRIBUTE_UNUSED) fatal_tag_valid = false; prog_running = false; - fprintf(out_fp, _("Program exited %s with exit value: %d\n"), - (! exiting && exit_val != EXIT_SUCCESS) ? "abnormally" - : "normally", + fprintf(out_fp, (! exiting && exit_val != EXIT_SUCCESS) + ? _("Program exited abnormally with exit value: %d\n") + : _("Program exited normally with exit value: %d\n"), exit_val); need_restart = true; return false; |