From: Andreas Schneider Date: Wed, 26 Jul 2017 15:25:30 +0000 (+0200) Subject: s3:lib: Add FALL_THROUGH statements in cbuf.c X-Git-Tag: talloc-2.1.12~383 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3f1a4b749d4157d075cd9146ab5d10d5d0e6ceec;p=thirdparty%2Fsamba.git s3:lib: Add FALL_THROUGH statements in cbuf.c --- diff --git a/source3/lib/cbuf.c b/source3/lib/cbuf.c index 611aa80609f..426ecdb5a3b 100644 --- a/source3/lib/cbuf.c +++ b/source3/lib/cbuf.c @@ -278,7 +278,8 @@ int cbuf_print_quoted_string(cbuf* ost, const char* s) case '\\': cbuf_putc(ost, '\\'); n++; - /* no break */ + + FALL_THROUGH; default: cbuf_putc(ost, *s); n++;