1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

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>
This commit is contained in:
Andreas Schneider 2021-02-01 14:36:57 +01:00 committed by Jeremy Allison
parent a878200934
commit 3c4dd384a1

View File

@ -121,6 +121,7 @@ static bool act_val_hex(struct reg_parse* p, cbuf* value, bool cont)
}
talloc_free(dst);
}
break;
default:
break;
}