evs: remove double semicolon.

Change-Id: I7760fd8dede9f40e3f626e42b4f33bb8f0507b06
Reviewed-on: https://code.wireshark.org/review/29783
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Dario Lombardo 2018-09-21 16:50:50 +02:00 committed by Gerald Combs
parent 96a68ffdd3
commit ddb4c857f7
1 changed files with 1 additions and 1 deletions

View File

@ -356,7 +356,7 @@ dissect_evs_cmr(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *evs_tree, int
proto_tree *tree;
proto_item *item;
const gchar *str;
guint8 t_bits = (cmr_oct & 0x70) >> 4;;
guint8 t_bits = (cmr_oct & 0x70) >> 4;
guint8 d_bits = (cmr_oct & 0x0f);
/* CMR */
tree = proto_tree_add_subtree(evs_tree, tvb, offset, 1, ett_evs_header, &item, "CMR");