Woops, forgot they printout applet name as well....

1_00_stable_10817
Glenn L McGrath 2002-11-28 10:58:19 +00:00
parent 9048ae5923
commit cdf142af90
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}