From: Andreas Schneider Date: Wed, 26 Jul 2017 16:25:46 +0000 (+0200) Subject: lib:replace: Add FALL_THROUGH statements in strptime.c X-Git-Tag: talloc-2.1.12~402 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a5104e6a396ded1c2f603eff5bf8fc89bfe3bb61;p=thirdparty%2Fsamba.git lib:replace: Add FALL_THROUGH statements in strptime.c Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlett --- diff --git a/lib/replace/strptime.c b/lib/replace/strptime.c index 20e5d8c39b6..bbc742277de 100644 --- a/lib/replace/strptime.c +++ b/lib/replace/strptime.c @@ -462,7 +462,8 @@ strptime_internal (rp, fmt, tm, decided, era_cnt) *decided = raw; } #endif - /* Fall through. */ + + FALL_THROUGH; case 'D': /* Match standard day format. */ if (!recursive (HERE_D_FMT)) @@ -611,7 +612,8 @@ strptime_internal (rp, fmt, tm, decided, era_cnt) *decided = raw; } #endif - /* Fall through. */ + + FALL_THROUGH; case 'T': if (!recursive (HERE_T_FMT)) return NULL;