aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-per.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2009-04-16 19:01:31 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2009-04-16 19:01:31 +0000
commitfdae05e98f1a4eb045d1dcadee61dc6f83a16f12 (patch)
treec9a3e925a6b8e225e4b2cb8465cc09acbd72a587 /epan/dissectors/packet-per.c
parent3fe3ada0dccb136404f4d20cfd48714eaad45d0d (diff)
From Vincent Helfre and Me:
- Dissect GSM messages. - Add functions to libwireshark needed by plugins. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@28068 f5534014-38df-0310-8fa8-9805f1628bb7
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 d3b7e6bad1..ebb8518c30 100644
--- a/epan/dissectors/packet-per.c
+++ b/epan/dissectors/packet-per.c
@@ -164,7 +164,7 @@ static const guint16 bit_mask16[] = {
/* Fetch a number of bits to a new tvb right adjusted to the nearest number of bytes.
* (add proceeding zeros in case of aligned PER)
*/
-static tvbuff_t *new_octet_aligned_subset_bits(tvbuff_t *tvb, guint32 offset, asn1_ctx_t *actx, guint32 no_of_bits)
+tvbuff_t *new_octet_aligned_subset_bits(tvbuff_t *tvb, guint32 offset, asn1_ctx_t *actx, guint32 no_of_bits)
{
tvbuff_t *sub_tvb = NULL;
guint32 boffset = offset >> 3;