summaryrefslogtreecommitdiff
path: root/soltools
diff options
context:
space:
mode:
Diffstat (limited to 'soltools')
-rw-r--r--soltools/cpp/_eval.c2
-rw-r--r--soltools/cpp/_lex.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/soltools/cpp/_eval.c b/soltools/cpp/_eval.c
index 84d8a79b5d44..e1eceb204371 100644
--- a/soltools/cpp/_eval.c
+++ b/soltools/cpp/_eval.c
@@ -319,7 +319,7 @@ long
}
continue;
}
- /* flow through */
+ /* fall through */
/* plain binary */
case EQ:
diff --git a/soltools/cpp/_lex.c b/soltools/cpp/_lex.c
index a8f874d6d464..de18fd50045a 100644
--- a/soltools/cpp/_lex.c
+++ b/soltools/cpp/_lex.c
@@ -492,6 +492,7 @@ continue2:
case S_STNL:
error(ERROR, "Unterminated string or char const");
+ /* fall through */
case S_NL:
tp->t = ip;
tp->type = NL;
@@ -516,6 +517,7 @@ continue2:
case S_EOFCOM:
error(WARNING, "EOF inside comment");
--ip;
+ /* fall through */
case S_COMMENT:
if (!Cflag)
{