summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--init/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/init/init.c b/init/init.c
index b3d33018..fe230daf 100644
--- a/init/init.c
+++ b/init/init.c
@@ -146,7 +146,7 @@ main (int argc, char **argv)
error (1, errno, "failed to fork");
case 0:
execv (args[0], args);
- error (2, errno, "failed to execv child");
+ error (2, errno, "failed to execv child %s", args[0]);
}
select (0, NULL, NULL, NULL, NULL);