aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ansi_637.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2012-04-13 20:22:31 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2012-04-13 20:22:31 +0000
commit8a1dc57c031880fa47475539ce961df5e658aee1 (patch)
treed7fda2fde39fe510c04d5003b8b6780008472a2a /epan/dissectors/packet-ansi_637.c
parent8fd3fcfd7879b6297f5cf622e4651cb34e658f54 (diff)
Remove doubled semicolons and semicolons outside function.
svn path=/trunk/; revision=42053
Diffstat (limited to 'epan/dissectors/packet-ansi_637.c')
-rw-r--r--epan/dissectors/packet-ansi_637.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ansi_637.c b/epan/dissectors/packet-ansi_637.c
index 1e40510004..8876a28c8c 100644
--- a/epan/dissectors/packet-ansi_637.c
+++ b/epan/dissectors/packet-ansi_637.c
@@ -726,7 +726,7 @@ tele_param_user_data(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
for (i=0; i < num_fields; i++)
{
oct = tvb_get_guint8(tvb, saved_offset);
- oct2 = tvb_get_guint8(tvb, saved_offset + 1);;
+ oct2 = tvb_get_guint8(tvb, saved_offset + 1);
ansi_637_bigbuf[i] = ((oct & 0x07) << 5) | ((oct2 & 0xf8) >> 3);
saved_offset++;
}
@@ -753,7 +753,7 @@ tele_param_user_data(tvbuff_t *tvb, proto_tree *tree, guint len, guint32 offset)
for (i=0; i < num_fields; i++)
{
oct = tvb_get_guint8(tvb, saved_offset);
- oct2 = tvb_get_guint8(tvb, saved_offset + 1);;
+ oct2 = tvb_get_guint8(tvb, saved_offset + 1);
ansi_637_bigbuf[i] = ((oct & 0x07) << 5) | ((oct2 & 0xf8) >> 3);
saved_offset++;
}