summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibC/unistd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/unistd.cpp b/Userland/Libraries/LibC/unistd.cpp
index 5d0fe6db68..727dcfc7aa 100644
--- a/Userland/Libraries/LibC/unistd.cpp
+++ b/Userland/Libraries/LibC/unistd.cpp
@@ -157,7 +157,7 @@ int execvp(const char* filename, char* const argv[])
{
int rc = execvpe(filename, argv, environ);
int saved_errno = errno;
- dbgln("execvp() about to return {} with errno={}", rc, saved_errno);
+ dbgln("execvp({}, ...) about to return {} with errno={}", filename, rc, saved_errno);
errno = saved_errno;
return rc;
}