aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-per.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2011-10-25 06:08:16 +0000
committerGuy Harris <guy@alum.mit.edu>2011-10-25 06:08:16 +0000
commitbdc92e9a5dfdba7ac0b6173625988570074bc40e (patch)
treeea815348cba577ef542fcca355ea2f5f474d9c27 /epan/dissectors/packet-per.c
parent2d263d571f7d91a7eb73cfca7a577300b1b79926 (diff)
Add missing semicolon.
svn path=/trunk/; revision=39555
Diffstat (limited to 'epan/dissectors/packet-per.c')
-rw-r--r--epan/dissectors/packet-per.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-per.c b/epan/dissectors/packet-per.c
index e124338c0b..6de3fcc16e 100644
--- a/epan/dissectors/packet-per.c
+++ b/epan/dissectors/packet-per.c
@@ -2012,7 +2012,7 @@ static tvbuff_t *dissect_per_bit_string_display(tvbuff_t *tvb, guint32 offset, a
value |= tvb_get_bits16(out_tvb, 32, length - 32, ENC_BIG_ENDIAN);
}else if (length<=56) { /* first read 32 and 16 then the remaining bits */
value = tvb_get_bits32(out_tvb, 0, 32, ENC_BIG_ENDIAN);
- value <<= 16
+ value <<= 16;
value |= tvb_get_bits16(out_tvb, 32, 16, ENC_BIG_ENDIAN);
value <<= 8 - pad_length;
value |= tvb_get_bits8(out_tvb, 48, length - 48);