From 14f0a5943b16345237c63bb932cdb9af5c85dd1d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 12 Oct 2019 14:47:06 +0200 Subject: [PATCH] LibC: Have perror() show the input string on the debugger as well --- Libraries/LibC/stdio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibC/stdio.cpp b/Libraries/LibC/stdio.cpp index c6cbddd4db..3da19ac12f 100644 --- a/Libraries/LibC/stdio.cpp +++ b/Libraries/LibC/stdio.cpp @@ -430,7 +430,7 @@ int snprintf(char* buffer, size_t size, const char* fmt, ...) void perror(const char* s) { int saved_errno = errno; - dbg() << "perror(): " << strerror(saved_errno); + dbg() << "perror(): " << s << ": " << strerror(saved_errno); fprintf(stderr, "%s: %s\n", s, strerror(saved_errno)); }