From 5d6b21fda2c970e35d4d7a25f1ba745f60aae20e Mon Sep 17 00:00:00 2001
From: tg <tg@mirbsd.org>
Date: Mon, 4 Jun 2007 19:25:45 +0000
Subject: [PATCH] it's FALLTHROUGH, 10x moritz@obsd

---
 lex.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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;