Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'whoami.c')
-rw-r--r--whoami.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/whoami.c b/whoami.c
index 870ede43e..398e37315 100644
--- a/whoami.c
+++ b/whoami.c
@@ -38,5 +38,5 @@ extern int whoami_main(int argc, char **argv)
puts(user);
return EXIT_SUCCESS;
}
- error_msg_and_die("cannot find username for UID %u\n", (unsigned) uid);
+ error_msg_and_die("cannot find username for UID %u", (unsigned) uid);
}