From 7c37ffd9d8ca082b1089b9c43f67e7a1b84d9e88 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 26 May 2019 02:06:09 +0200 Subject: [PATCH] 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. --- LibC/signal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",