Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-11-28 12:34:51 +0300
committerGlenn L McGrath <bug1@ihug.co.nz>2002-11-28 12:34:51 +0300
commitd7d5f429349001faab658eb968def689c1ca8d58 (patch)
tree995eb7f37252f851e7f5f67524a812198f648440 /coreutils/dd.c
parentd4036f86e579be4e1911507a72f161b18fdfd28d (diff)
Use error_msg instead of fprintf(stderr
Diffstat (limited to 'coreutils/dd.c')
-rw-r--r--coreutils/dd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c
index fb78d5355..d6a4bb3aa 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);
- fprintf(stderr, "%ld+%ld records in\n", (long)in_full, (long)in_part);
- fprintf(stderr, "%ld+%ld records out\n", (long)out_full, (long)out_part);
+ error_msg("%ld+%ld records in", (long)in_full, (long)in_part);
+ error_msg("%ld+%ld records out", (long)out_full, (long)out_part);
return EXIT_SUCCESS;
}