From 0dcd39b002cff7785c38ce535f6e57d4208fefa6 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Mon, 24 Aug 2020 10:25:56 +0300 Subject: Make all messages consistent: no final periods. --- io.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'io.c') diff --git a/io.c b/io.c index 7c69fcf3..2478f0c1 100644 --- a/io.c +++ b/io.c @@ -1166,7 +1166,7 @@ close_one() rp->flag |= RED_USED; errno = 0; if (rp->output.gawk_fclose(rp->output.fp, rp->output.opaque) != 0) - warning(_("close of `%s' failed: %s."), + warning(_("close of `%s' failed: %s"), rp->value, strerror(errno)); rp->output.fp = NULL; break; @@ -1454,13 +1454,13 @@ flush_io() messagefunc = r_warning; if ((rp->flag & RED_PIPE) != 0) - messagefunc(_("pipe flush of `%s' failed: %s."), + messagefunc(_("pipe flush of `%s' failed: %s"), rp->value, strerror(errno)); else if ((rp->flag & RED_TWOWAY) != 0) - messagefunc(_("co-process flush of pipe to `%s' failed: %s."), + messagefunc(_("co-process flush of pipe to `%s' failed: %s"), rp->value, strerror(errno)); else - messagefunc(_("file flush of `%s' failed: %s."), + messagefunc(_("file flush of `%s' failed: %s"), rp->value, strerror(errno)); status++; } -- cgit v1.2.3