aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-extreme.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2017-09-15 20:28:24 +0200
committerStig Bjørlykke <stig@bjorlykke.org>2017-09-15 19:52:53 +0000
commit3f8384d7797cb07f220cad998620aa2b1ee11960 (patch)
treecc090e097f3d98d5a8e4ed0485d84394484d250c /epan/dissectors/packet-extreme.c
parent8b11e37f81d567921faacc5302f4b87268912484 (diff)
epan: Fix misuse of comma operator
Change-Id: I349dc9896db0bd306bc92f92eb9d4a65d98d309c Reviewed-on: https://code.wireshark.org/review/23558 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net> Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'epan/dissectors/packet-extreme.c')
-rw-r--r--epan/dissectors/packet-extreme.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-extreme.c b/epan/dissectors/packet-extreme.c
index fdf58f1671..8ada7060f0 100644
--- a/epan/dissectors/packet-extreme.c
+++ b/epan/dissectors/packet-extreme.c
@@ -387,7 +387,7 @@ dissect_tlv_header(tvbuff_t *tvb, packet_info *pinfo _U_, int offset, int length
guint8 tlv_type;
guint16 tlv_length;
- tlv_marker = tvb_get_guint8(tvb, offset),
+ tlv_marker = tvb_get_guint8(tvb, offset);
tlv_type = tvb_get_guint8(tvb, offset + 1);
tlv_length = tvb_get_ntohs(tvb, offset + 2);