diff options
author | mistachkin <mistachkin@noemail.net> | 2019-09-11 15:25:26 +0000 |
---|---|---|
committer | mistachkin <mistachkin@noemail.net> | 2019-09-11 15:25:26 +0000 |
commit | acf6e08d20a663de5d4012effba666675bd23fe9 (patch) | |
tree | bcfd2611e64e0f27c9c606c2a7b2d571707df461 /tool/lemon.c | |
parent | c204d81a6c043305cfae10e7e9c9338d3702d1a6 (diff) | |
download | sqlite-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.c | 2 |
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 */ |