aboutsummaryrefslogtreecommitdiff
path: root/coreutils/link.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/link.c')
-rw-r--r--coreutils/link.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/link.c b/coreutils/link.c
index 56832fdf6..6e20dafe3 100644
--- a/coreutils/link.c
+++ b/coreutils/link.c
@@ -33,7 +33,7 @@ int link_main(int argc UNUSED_PARAM, char **argv)
33 if (link(argv[0], argv[1]) != 0) { 33 if (link(argv[0], argv[1]) != 0) {
34 /* shared message */ 34 /* shared message */
35 bb_perror_msg_and_die("can't create %slink " 35 bb_perror_msg_and_die("can't create %slink "
36 "%s to %s", "hard", 36 "'%s' to '%s'", "hard",
37 argv[1], argv[0] 37 argv[1], argv[0]
38 ); 38 );
39 } 39 }