aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2020-08-24 10:25:56 +0300
committerArnold D. Robbins <arnold@skeeve.com>2020-08-24 10:25:56 +0300
commit0dcd39b002cff7785c38ce535f6e57d4208fefa6 (patch)
tree018a891250ad289b54fa8f28099110e697952ccb /io.c
parente71664615529f419082b373ea7e44c35b0595a97 (diff)
downloadegawk-0dcd39b002cff7785c38ce535f6e57d4208fefa6.tar.gz
egawk-0dcd39b002cff7785c38ce535f6e57d4208fefa6.tar.bz2
egawk-0dcd39b002cff7785c38ce535f6e57d4208fefa6.zip
Make all messages consistent: no final periods.
Diffstat (limited to 'io.c')
-rw-r--r--io.c8
1 files changed, 4 insertions, 4 deletions
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++;
}