aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-11-28 10:58:19 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2002-11-28 10:58:19 +0000
commitcdf142af90b4594d4463789cae53dcb9ec29319e (patch)
tree6016761eab4872e977655928b9cf9db7cea40329 /coreutils
parent9048ae59238cd4bde1e5232d9edcd7b37cf5e84b (diff)
downloadbusybox-cdf142af90b4594d4463789cae53dcb9ec29319e.tar.gz
Woops, forgot they printout applet name as well....
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/dd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c
index d6a4bb3aa..ad7f46c9f 100644
--- a/coreutils/dd.c
+++ b/coreutils/dd.c
@@ -172,8 +172,8 @@ int dd_main(int argc, char **argv)
if (close (ofd) < 0)
perror_msg_and_die("%s", outfile);
- error_msg("%ld+%ld records in", (long)in_full, (long)in_part);
- error_msg("%ld+%ld records out", (long)out_full, (long)out_part);
+ fprintf(stderr, "%ld+%ld records in", (long)in_full, (long)in_part);
+ fprintf(stderr, "%ld+%ld records out", (long)out_full, (long)out_part);
return EXIT_SUCCESS;
}