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) { if (code == 0) return build_string ("finished\n"); - string = Fint_to_string (make_number (code)); + string = Fnumber_to_string (make_number (code)); string2 = build_string (coredump ? " (core dumped)\n" : "\n"); return concat2 (build_string ("exited abnormally with code "), concat2 (string, string2)); |