aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-csn1.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-03-17 09:11:21 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-03-17 09:11:21 +0000
commit2e52e2ac997ca58caabee3270b5a6c3f96159ff0 (patch)
treef91b54117a59dee1f23c74e86b53be24a21825bb /epan/dissectors/packet-csn1.c
parente8c305fd3b957b68388653ad1029a253c90b9a53 (diff)
[-Wmissing-prototypes]
Use explicit casts. svn path=/trunk/; revision=48347
Diffstat (limited to 'epan/dissectors/packet-csn1.c')
-rw-r--r--epan/dissectors/packet-csn1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-csn1.c b/epan/dissectors/packet-csn1.c
index d67220fcfc..85eab09807 100644
--- a/epan/dissectors/packet-csn1.c
+++ b/epan/dissectors/packet-csn1.c
@@ -587,7 +587,7 @@ csnStreamDissector(proto_tree *tree, csnStream_t* ar, const CSN_DESCR* pDescr, t
{
gint16 count = pDescr->i;
guint8 i = 0;
- CSN_ChoiceElement_t* pChoice = (CSN_ChoiceElement_t*) pDescr->descr.ptr;
+ const CSN_ChoiceElement_t* pChoice = (const CSN_ChoiceElement_t*) pDescr->descr.ptr;
while (count > 0)
{