From f0d8b816af00186c108f6cdc538ec18d8b4dddba Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Fri, 7 Sep 2018 10:43:21 +0300 Subject: Remove \n from calls to lintwarn, warning, and fatal. --- io.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'io.c') diff --git a/io.c b/io.c index a3d68ce0..18c2adb9 100644 --- a/io.c +++ b/io.c @@ -2383,7 +2383,7 @@ use_pipes: if (dup(save_stdout) != 1) { close(save_stdin); close(save_stdout); close(ptoc[1]); close(ctop[0]); - fatal(_("restoring stdout in parent process failed\n")); + fatal(_("restoring stdout in parent process failed")); } close(save_stdout); @@ -2391,7 +2391,7 @@ use_pipes: if (dup(save_stdin) != 0) { close(save_stdin); close(ptoc[1]); close(ctop[0]); - fatal(_("restoring stdin in parent process failed\n")); + fatal(_("restoring stdin in parent process failed")); } close(save_stdin); @@ -2652,7 +2652,7 @@ gawk_popen(const char *cmd, struct redirect *rp) close(1); if (dup(save_stdout) != 1) { close(p[0]); - fatal(_("restoring stdout in parent process failed\n")); + fatal(_("restoring stdout in parent process failed")); } close(save_stdout); -- cgit v1.2.3