From f4d6ff98f6a01e4383c9d6b1217240f4621fa342 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 15 Feb 2012 06:12:38 -0600 Subject: Error message fix from Pere (gotrunks at gmail). --- toys/link.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toys/link.c') diff --git a/toys/link.c b/toys/link.c index c18dfef6..69a9a60f 100644 --- a/toys/link.c +++ b/toys/link.c @@ -22,6 +22,6 @@ config LINK void link_main(void) { if (link(toys.optargs[0], toys.optargs[1])) - perror_exit("couldn't link '%s' to '%s'", toys.optargs[0], - toys.optargs[1]); + perror_exit("couldn't link '%s' to '%s'", toys.optargs[1], + toys.optargs[0]); } -- cgit v1.2.3