diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-01-19 21:46:37 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-01-19 21:46:37 +0200 |
commit | 7f0a3e240d595120caf773c2ec0ab531381ad705 (patch) | |
tree | 01935101efb2938a61e635abe4955c28475bc9c8 /builtin.c | |
parent | 808698b6a4cb7bbbb88e1892fd9c4155119b30f5 (diff) | |
download | gawk-stable.tar.gz |
Fix to pass the test suite.gawk-stablegawk-3.1-stable
Diffstat (limited to 'builtin.c')
-rw-r--r-- | builtin.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -787,11 +787,11 @@ check_pos: const char *msg = NULL; if (fw && ! have_prec) - msg = _("field width is ignored for `%%%%' specifier"); + msg = _("field width is ignored for `%%' specifier"); else if (fw == 0 && have_prec) - msg = _("precision is ignored for `%%%%' specifier"); + msg = _("precision is ignored for `%%' specifier"); else if (fw && have_prec) - msg = _("field width and precision are ignored for `%%%%' specifier"); + msg = _("field width and precision are ignored for `%%' specifier"); if (msg != NULL) lintwarn("%s", msg); |