aboutsummaryrefslogtreecommitdiff
path: root/coreutils/link.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/link.c')
-rw-r--r--coreutils/link.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/coreutils/link.c b/coreutils/link.c
index 81808b778..d8d583b7b 100644
--- a/coreutils/link.c
+++ b/coreutils/link.c
@@ -31,9 +31,8 @@ int link_main(int argc UNUSED_PARAM, char **argv)
argv += optind;
if (link(argv[0], argv[1]) != 0) {
/* shared message */
- bb_perror_msg_and_die("can't create %slink "
- "'%s' to '%s'", "hard",
- argv[1], argv[0]
+ bb_perror_msg_and_die("can't create %slink '%s' to '%s'",
+ "hard", argv[1], argv[0]
);
}
return EXIT_SUCCESS;