Add missing semicolon.

svn path=/trunk/; revision=39555
This commit is contained in:
Guy Harris 2011-10-25 06:08:16 +00:00
parent 2d263d571f
commit bdc92e9a5d
1 changed files with 1 additions and 1 deletions

View File

@ -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);