From: Andreas Schneider Date: Wed, 26 Jul 2017 15:55:35 +0000 (+0200) Subject: s3:utils: Add FALL_THROUGH statements in regedit.c X-Git-Tag: talloc-2.1.12~376 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=273ef597616dc41620860781fe0e19cc747fe931;p=thirdparty%2Fsamba.git s3:utils: Add FALL_THROUGH statements in regedit.c Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlett --- diff --git a/source3/utils/regedit.c b/source3/utils/regedit.c index 14e75c25bfa..27bd6f8f2c2 100644 --- a/source3/utils/regedit.c +++ b/source3/utils/regedit.c @@ -507,7 +507,8 @@ static void handle_value_input(struct regedit *regedit, int c) case 'b': case 'B': binmode = true; - /* Falthrough... */ + + FALL_THROUGH; case '\n': case KEY_ENTER: vitem = value_list_get_current_item(regedit->vl);