diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-05-26 02:06:09 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-05-26 02:35:25 +0200 |
commit | 7c37ffd9d8ca082b1089b9c43f67e7a1b84d9e88 (patch) | |
tree | f01389f526e1f9d1ad7d60930c32445715327ad5 | |
parent | 23a5ce3319c2bce6f27693f9b091d43f885d4ffb (diff) | |
download | serenity-7c37ffd9d8ca082b1089b9c43f67e7a1b84d9e88.zip |
LibC: Let the string for SIGFPE be "Division by zero".
That's really what we send this signal for, so let's call it that.
-rw-r--r-- | LibC/signal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LibC/signal.cpp b/LibC/signal.cpp index dfb3a3a9a2..79f1bd5eb6 100644 --- a/LibC/signal.cpp +++ b/LibC/signal.cpp @@ -109,7 +109,7 @@ const char* sys_siglist[NSIG] = { "Trap", "Aborted", "Bus error", - "FP exception", + "Division by zero", "Killed", "User signal 1", "Segmentation violation", |