summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-05-26 02:06:09 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-26 02:35:25 +0200
commit7c37ffd9d8ca082b1089b9c43f67e7a1b84d9e88 (patch)
treef01389f526e1f9d1ad7d60930c32445715327ad5
parent23a5ce3319c2bce6f27693f9b091d43f885d4ffb (diff)
downloadserenity-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.cpp2
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",