aboutsummaryrefslogtreecommitdiffstats
path: root/packet-gtp.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2003-09-21 20:06:02 +0000
committerGerald Combs <gerald@wireshark.org>2003-09-21 20:06:02 +0000
commitd47426ec5822554b4a28686c10f15898caba0ca1 (patch)
treeeb7cc6eac2585f715dbb4a394ad9c3328b495a77 /packet-gtp.c
parent21fe8b2187ff1fa2c55133b6dca73e104d9b8bff (diff)
Remove a bunch of duplicate semicolons.
svn path=/trunk/; revision=8509
Diffstat (limited to 'packet-gtp.c')
-rw-r--r--packet-gtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-gtp.c b/packet-gtp.c
index 4dba637bce..2a31e0f7f6 100644
--- a/packet-gtp.c
+++ b/packet-gtp.c
@@ -4,7 +4,7 @@
* Copyright 2001, Michal Melerowicz <michal.melerowicz@nokia.com>
* Nicolas Balkota <balkota@mac.com>
*
- * $Id: packet-gtp.c,v 1.62 2003/09/20 08:56:28 guy Exp $
+ * $Id: packet-gtp.c,v 1.63 2003/09/21 20:06:00 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -4106,7 +4106,7 @@ decode_gtp_tft(tvbuff_t *tvb, int offset, packet_info *pinfo _U_, proto_tree *tr
break;
/* flow label type = 3 bytes */
case 0x80:
- label = tvb_get_ntoh24(tvb, offset + pf_offset + 1) & 0x0FFFFF;;
+ label = tvb_get_ntoh24(tvb, offset + pf_offset + 1) & 0x0FFFFF;
proto_tree_add_text (ext_tree_tft_pf, tvb, offset + pf_offset, 4, "ID 0x80: Flow Label: %u (%x)", label, label);
pf_offset = pf_offset + 4;
break;