Removed trailing \n from error_msg{,_and_die} messages.

This commit is contained in:
Matt Kraai 2001-01-31 19:00:21 +00:00
parent 63ec273245
commit dd19c69904
106 changed files with 612 additions and 610 deletions

View file

@ -142,7 +142,7 @@ static void encode()
}
if (ferror (stdin))
error_msg("Read error\n");
error_msg("Read error");
if (trans_ptr == uu_std) {
putchar (ENC ('\0'));
@ -196,7 +196,7 @@ int uuencode_main (int argc,
encode();
printf(trans_ptr == uu_std ? "end\n" : "====\n");
if (ferror (stdout)) {
error_msg("Write error\n");
error_msg("Write error");
return EXIT_FAILURE;
}
return EXIT_SUCCESS;