projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9048ae5
)
Woops, forgot they printout applet name as well....
author
Glenn L McGrath
<bug1@ihug.co.nz>
Thu, 28 Nov 2002 10:58:19 +0000
(10:58 -0000)
committer
Glenn L McGrath
<bug1@ihug.co.nz>
Thu, 28 Nov 2002 10:58:19 +0000
(10:58 -0000)
coreutils/dd.c
patch
|
blob
|
history
diff --git
a/coreutils/dd.c
b/coreutils/dd.c
index d6a4bb3aa3a31fdfce288b02089f4319058c8cec..ad7f46c9f57f57efd0c775e5cd971ec17f43e941 100644
(file)
--- 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;
}