summaryrefslogtreecommitdiff
path: root/src/lemon.c
diff options
context:
space:
mode:
authorStefan Bühler <stbuehler@web.de>2017-10-01 13:51:43 +0200
committerGlenn Strauss <gstrauss@gluelogic.com>2017-10-03 21:16:03 -0400
commit428cd963d6551414e81653ce8c68abf012c6747f (patch)
treecad60d354dc0a943fbd8293a5f41c3ff78ccdc8e /src/lemon.c
parentf46b1b1d532efe2697cba294bd87369b8983ed57 (diff)
downloadlighttpd-git-428cd963d6551414e81653ce8c68abf012c6747f.tar.gz
[lemon] fix gcc implicit-fallthrough warning
Diffstat (limited to 'src/lemon.c')
-rw-r--r--src/lemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lemon.c b/src/lemon.c
index aa86b09b..3019408e 100644
--- a/src/lemon.c
+++ b/src/lemon.c
@@ -1941,7 +1941,7 @@ struct pstate *psp;
psp->preccounter = 0;
psp->firstrule = psp->lastrule = 0;
psp->gp->nrule = 0;
- /* Fall thru to next case */
+ /* Fall through */
case WAITING_FOR_DECL_OR_RULE:
if( x[0]=='%' ){
psp->state = WAITING_FOR_DECL_KEYWORD;