summaryrefslogtreecommitdiff
path: root/interpret.h
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2019-06-30 21:31:54 +0300
committerArnold D. Robbins <arnold@skeeve.com>2019-06-30 21:31:54 +0300
commitd74560a10b861f2a6342f07f459a34d38685e65c (patch)
treee8641df8c997fcce8c52eab68873f95c4178049b /interpret.h
parent4e38fffcac026c4d8a8fbf52258faf478dcf4db2 (diff)
downloadgawk-d74560a10b861f2a6342f07f459a34d38685e65c.tar.gz
Fix four more lint extension warnings.
Diffstat (limited to 'interpret.h')
-rw-r--r--interpret.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/interpret.h b/interpret.h
index 478dc82a..3215833e 100644
--- a/interpret.h
+++ b/interpret.h
@@ -264,7 +264,7 @@ uninitialized_scalar:
if (t1 == func_table) {
static bool warned = false;
- if (do_lint && ! warned) {
+ if (do_lint_extensions && ! warned) {
warned = true;
lintwarn(_("FUNCTAB is a gawk extension"));
}
@@ -282,7 +282,7 @@ uninitialized_scalar:
if (t1 == symbol_table) {
static bool warned = false;
- if (do_lint && ! warned) {
+ if (do_lint_extensions && ! warned) {
warned = true;
lintwarn(_("SYMTAB is a gawk extension"));
}