diff --git a/lex.c b/lex.c index 1ce0459..f3da131 100644 --- a/lex.c +++ b/lex.c @@ -2,7 +2,7 @@ #include "sh.h" -__RCSID("$MirOS: src/bin/mksh/lex.c,v 1.32 2007/05/13 19:14:04 tg Exp $"); +__RCSID("$MirOS: src/bin/mksh/lex.c,v 1.33 2007/06/04 19:25:45 tg Exp $"); /* Structure to keep track of the lexing state and the various pieces of info * needed for each particular state. */ @@ -220,7 +220,7 @@ yylex(int cf) case '"': if ((cf & HEREDOC)) goto heredocquote; - /* FALLTROUGH */ + /* FALLTHROUGH */ case '\\': case '$': case '`': *wp++ = QCHAR, *wp++ = c;