From b67a9cce48df6a3d83fe70ae3a6c8ca0bd8b7afd Mon Sep 17 00:00:00 2001 From: kraai Date: Mon, 18 Dec 2000 03:08:29 +0000 Subject: Add missing newlines to error messages. git-svn-id: svn://busybox.net/trunk/busybox@1465 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- coreutils/touch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coreutils/touch.c') diff --git a/coreutils/touch.c b/coreutils/touch.c index 59800b2a0..1b03075e8 100644 --- a/coreutils/touch.c +++ b/coreutils/touch.c @@ -58,12 +58,12 @@ extern int touch_main(int argc, char **argv) if (create == FALSE && errno == ENOENT) return EXIT_SUCCESS; else { - error_msg_and_die("%s", strerror(errno)); + perror_msg_and_die("%s", *argv); } } close(fd); if (utime(*argv, NULL)) { - error_msg_and_die("%s", strerror(errno)); + perror_msg_and_die("%s", *argv); } argc--; argv++; -- cgit v1.2.3-55-g6feb