diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 1e537f736c2..ed80460286a 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -359,7 +359,7 @@ status_message (status) | |||
| 359 | { | 359 | { |
| 360 | if (code == 0) | 360 | if (code == 0) |
| 361 | return build_string ("finished\n"); | 361 | return build_string ("finished\n"); |
| 362 | string = Fint_to_string (make_number (code)); | 362 | string = Fnumber_to_string (make_number (code)); |
| 363 | string2 = build_string (coredump ? " (core dumped)\n" : "\n"); | 363 | string2 = build_string (coredump ? " (core dumped)\n" : "\n"); |
| 364 | return concat2 (build_string ("exited abnormally with code "), | 364 | return concat2 (build_string ("exited abnormally with code "), |
| 365 | concat2 (string, string2)); | 365 | concat2 (string, string2)); |