From: Andreas Schneider Date: Wed, 26 Jul 2017 16:28:12 +0000 (+0200) Subject: lib:tdb: Add FALL_THROUGH statements in common/summary.c X-Git-Tag: talloc-2.1.12~388 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=17410725065da5040f9c6eae2383a960b7712156;p=thirdparty%2Fsamba.git lib:tdb: Add FALL_THROUGH statements in common/summary.c Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlett --- diff --git a/lib/tdb/common/summary.c b/lib/tdb/common/summary.c index d786132d4a1..c9b5bc4c1d0 100644 --- a/lib/tdb/common/summary.c +++ b/lib/tdb/common/summary.c @@ -151,7 +151,8 @@ _PUBLIC_ char *tdb_summary(struct tdb_context *tdb) rec.rec_len = tdb_dead_space(tdb, off) - sizeof(rec); } - /* Fall through */ + + FALL_THROUGH; case TDB_DEAD_MAGIC: tally_add(&dead, rec.rec_len); break;