diff options
-rw-r--r-- | bin/ksh/lex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/lex.c b/bin/ksh/lex.c index 4340f79f828..34c8b54b8fc 100644 --- a/bin/ksh/lex.c +++ b/bin/ksh/lex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lex.c,v 1.42 2006/07/10 17:12:41 beck Exp $ */ +/* $OpenBSD: lex.c,v 1.43 2007/06/02 16:40:59 moritz Exp $ */ /* * lexical analysis and source input @@ -299,7 +299,7 @@ yylex(int cf) *wp++ = QCHAR, *wp++ = c; break; } - /* FALLTROUGH */ + /* FALLTHROUGH */ default: Xcheck(ws, wp); if (c) { /* trailing \ is lost */ |