From be84cd4ef66f8956eb4c7ff0542fd1ba823a70e7 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Wed, 12 Jul 2000 17:02:35 +0000 Subject: Always report the applet name when doing error reporting. --- touch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'touch.c') diff --git a/touch.c b/touch.c index f52bb0284..ac275423c 100644 --- a/touch.c +++ b/touch.c @@ -70,12 +70,12 @@ extern int touch_main(int argc, char **argv) if (create == FALSE && errno == ENOENT) exit(TRUE); else { - fatalError("touch: %s", strerror(errno)); + fatalError("%s", strerror(errno)); } } close(fd); if (utime(*argv, NULL)) { - fatalError("touch: %s", strerror(errno)); + fatalError("%s", strerror(errno)); } argc--; argv++; -- cgit v1.2.3