From: Andreas Schneider Date: Mon, 1 Feb 2021 13:36:57 +0000 (+0100) Subject: s4:registry: Add missing break in switch statement X-Git-Tag: tevent-0.11.0~1857 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3c4dd384a138ff5bd2bef7829b1dd269e5f1bffd;p=thirdparty%2Fsamba.git s4:registry: Add missing break in switch statement error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] Signed-off-by: Andreas Schneider Reviewed-by: Jeremy Allison --- diff --git a/source3/registry/reg_parse.c b/source3/registry/reg_parse.c index 24e9b62a516..6230b000c3b 100644 --- a/source3/registry/reg_parse.c +++ b/source3/registry/reg_parse.c @@ -121,6 +121,7 @@ static bool act_val_hex(struct reg_parse* p, cbuf* value, bool cont) } talloc_free(dst); } + break; default: break; }