summaryrefslogtreecommitdiff
path: root/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'io.c')
-rw-r--r--io.c6
1 files changed, 3 insertions, 3 deletions
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);