aboutsummaryrefslogtreecommitdiff
path: root/tool/lemon.c
diff options
context:
space:
mode:
authormistachkin <mistachkin@noemail.net>2019-09-11 15:25:26 +0000
committermistachkin <mistachkin@noemail.net>2019-09-11 15:25:26 +0000
commitacf6e08d20a663de5d4012effba666675bd23fe9 (patch)
treebcfd2611e64e0f27c9c606c2a7b2d571707df461 /tool/lemon.c
parentc204d81a6c043305cfae10e7e9c9338d3702d1a6 (diff)
downloadsqlite-acf6e08d20a663de5d4012effba666675bd23fe9.tar.gz
sqlite-acf6e08d20a663de5d4012effba666675bd23fe9.zip
Fix typo for one instance of line number handling in the Lemon tool.
FossilOrigin-Name: 980be1730dc1239c63a107923bf2e32b4ec7d4bc31b9190e711cc35f18cc2bb4
Diffstat (limited to 'tool/lemon.c')
-rw-r--r--tool/lemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lemon.c b/tool/lemon.c
index 893e1d18b..6efc6af30 100644
--- a/tool/lemon.c
+++ b/tool/lemon.c
@@ -4426,7 +4426,7 @@ void ReportTable(
}
i++;
}
- if( j>0 ) fprintf(out, "\n"); lineno++;
+ if( j>0 ){ fprintf(out, "\n"); lineno++; }
fprintf(out, "};\n"); lineno++;
/* Output the yy_shift_ofst[] table */