mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
Use error_msg instead of fprintf(stderr
This commit is contained in:
parent
d4036f86e5
commit
d7d5f42934
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue