diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-08-24 10:25:56 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-08-24 10:25:56 +0300 |
commit | 0dcd39b002cff7785c38ce535f6e57d4208fefa6 (patch) | |
tree | 018a891250ad289b54fa8f28099110e697952ccb /builtin.c | |
parent | e71664615529f419082b373ea7e44c35b0595a97 (diff) | |
download | egawk-0dcd39b002cff7785c38ce535f6e57d4208fefa6.tar.gz egawk-0dcd39b002cff7785c38ce535f6e57d4208fefa6.tar.bz2 egawk-0dcd39b002cff7785c38ce535f6e57d4208fefa6.zip |
Make all messages consistent: no final periods.
Diffstat (limited to 'builtin.c')
-rw-r--r-- | builtin.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4154,7 +4154,7 @@ do_typeof(int nargs) /* fall through */ default: if (res == NULL) { - warning(_("typeof detected invalid flags combination `%s'; please file a bug report."), flags2str(arg->flags)); + warning(_("typeof detected invalid flags combination `%s'; please file a bug report"), flags2str(arg->flags)); res = "unknown"; } break; |