aboutsummaryrefslogtreecommitdiff
path: root/coreutils/tee.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-12-18 03:57:16 +0000
committerMatt Kraai <kraai@debian.org>2000-12-18 03:57:16 +0000
commit1fa1adea2ae16d4f4c82d7466905dce4c6edd5f5 (patch)
treeb85a425c19b299f5d8635599e11c78c96f12a4c2 /coreutils/tee.c
parent0dab82997777bffb95d01d68e1628ee79207a03d (diff)
downloadbusybox-w32-1fa1adea2ae16d4f4c82d7466905dce4c6edd5f5.tar.gz
busybox-w32-1fa1adea2ae16d4f4c82d7466905dce4c6edd5f5.tar.bz2
busybox-w32-1fa1adea2ae16d4f4c82d7466905dce4c6edd5f5.zip
Change calls to error_msg.* and strerror to use perror_msg.*.
Diffstat (limited to 'coreutils/tee.c')
-rw-r--r--coreutils/tee.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tee.c b/coreutils/tee.c
index 347684a28..f0eca070d 100644
--- a/coreutils/tee.c
+++ b/coreutils/tee.c
@@ -47,7 +47,7 @@ tee_main(int argc, char **argv)
47 while (optind < argc) { 47 while (optind < argc) {
48 if ((files[nfiles++] = fopen(argv[optind++], mode)) == NULL) { 48 if ((files[nfiles++] = fopen(argv[optind++], mode)) == NULL) {
49 nfiles--; 49 nfiles--;
50 error_msg("%s: %s\n", argv[optind-1], strerror(errno)); 50 perror_msg("%s", argv[optind-1]);
51 status = 1; 51 status = 1;
52 } 52 }
53 } 53 }