summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibC/string.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/string.cpp b/Userland/Libraries/LibC/string.cpp
index 5adfe173ae..a2542507af 100644
--- a/Userland/Libraries/LibC/string.cpp
+++ b/Userland/Libraries/LibC/string.cpp
@@ -377,7 +377,6 @@ int strerror_r(int errnum, char* buf, size_t buflen)
char* strerror(int errnum)
{
if (errnum < 0 || errnum >= EMAXERRNO) {
- dbgln("strerror() missing string for errnum={}", errnum);
return const_cast<char*>("Unknown error");
}
return const_cast<char*>(sys_errlist[errnum]);