bitmask: add missing break statement

Change-Id: Ia9cb54431c8c274c46e299b6a6da8cac14bda88e
Reviewed-on: https://code.wireshark.org/review/18591
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
This commit is contained in:
Thomas Wiens 2016-10-31 10:57:49 +01:00 committed by Pascal Quantin
parent 7bdcf75a5c
commit b61cfd7ec1
1 changed files with 1 additions and 0 deletions

View File

@ -9351,6 +9351,7 @@ proto_item_add_bitmask_tree(proto_item *item, tvbuff_t *tvb, const int offset,
case FT_INT56:
case FT_INT64:
proto_tree_add_int64(tree, **fields, tvb, offset, len, (gint64)value);
break;
case FT_BOOLEAN:
proto_tree_add_boolean64(tree, **fields, tvb, offset, len, value);