summaryrefslogtreecommitdiff
path: root/source3/registry
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2021-02-01 14:36:57 +0100
committerJeremy Allison <jra@samba.org>2021-02-01 21:50:32 +0000
commit3c4dd384a138ff5bd2bef7829b1dd269e5f1bffd (patch)
tree8f00624529764e5d047af13dacd3d49ecccbf307 /source3/registry
parenta87820093431ac1b5940c7b010553af9cbfced22 (diff)
downloadsamba-3c4dd384a138ff5bd2bef7829b1dd269e5f1bffd.tar.gz
s4:registry: Add missing break in switch statement
error: unannotated fall-through between switch labels [-Werror,-Wimplicit-fallthrough] Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/registry')
-rw-r--r--source3/registry/reg_parse.c1
1 files changed, 1 insertions, 0 deletions
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;
}