From: Andreas Schneider Date: Fri, 13 Oct 2017 09:08:36 +0000 (+0200) Subject: s3:modules: Add FALL_THROUGH statements in getdate.c X-Git-Tag: talloc-2.1.12~360 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=824fa2c4dbba252cfa778027f0ea7fdfa4fda894;p=thirdparty%2Fsamba.git s3:modules: Add FALL_THROUGH statements in getdate.c Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlett --- diff --git a/source3/modules/getdate.c b/source3/modules/getdate.c index 6ed994649c4..2879bc87f4b 100644 --- a/source3/modules/getdate.c +++ b/source3/modules/getdate.c @@ -1098,9 +1098,10 @@ yytnamerr (char *yyres, const char *yystr) goto do_not_strip_quotes; case '\\': - if (*++yyp != '\\') + if (*++yyp != '\\') { goto do_not_strip_quotes; - /* Fall through. */ + } + FALL_THROUGH; default: if (yyres) yyres[yyn] = *yyp;