diff options
author | Toomas Soome <tsoome@me.com> | 2018-03-10 14:57:31 -0800 |
---|---|---|
committer | Joshua M. Clulow <josh@sysmgr.org> | 2018-03-10 15:02:26 -0800 |
commit | 88e1588bca8b2374cfe26f7f5b377c59710c6a4b (patch) | |
tree | 5522400c9d8cf10d03207e96e8d2d434c6f61afa /usr/src/lib/libsqlite/tool/lemon.c | |
parent | 5fb574e854f31be9e2869532e3b126fa424ee4d9 (diff) | |
download | illumos-gate-88e1588bca8b2374cfe26f7f5b377c59710c6a4b.tar.gz |
9144 libsqlite: this statement may fall through
Reviewed by: Gordon Ross <gordon.w.ross@gmail.com>
Reviewed by: Andy Fiddaman <omnios@citrus-it.co.uk>
Approved by: Joshua M. Clulow <josh@sysmgr.org>
Diffstat (limited to 'usr/src/lib/libsqlite/tool/lemon.c')
-rw-r--r-- | usr/src/lib/libsqlite/tool/lemon.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr/src/lib/libsqlite/tool/lemon.c b/usr/src/lib/libsqlite/tool/lemon.c index d0321b0f55..03d96e3922 100644 --- a/usr/src/lib/libsqlite/tool/lemon.c +++ b/usr/src/lib/libsqlite/tool/lemon.c @@ -1,6 +1,3 @@ - -#pragma ident "%Z%%M% %I% %E% SMI" - /* ** This file contains all sources (including headers) to the LEMON ** LALR(1) parser generator. The sources have been combined into a @@ -1915,7 +1912,7 @@ struct pstate *psp; psp->preccounter = 0; psp->firstrule = psp->lastrule = 0; psp->gp->nrule = 0; - /* Fall thru to next case */ + /* FALLTHROUGH */ case WAITING_FOR_DECL_OR_RULE: if( x[0]=='%' ){ psp->state = WAITING_FOR_DECL_KEYWORD; |