Browse Source

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.
Andreas Kling 6 years ago
parent
commit
7c37ffd9d8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      LibC/signal.cpp

+ 1 - 1
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",