aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-3g-a11.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-06-04 13:52:46 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-06-04 13:52:46 +0000
commitb69547925ff7bdd87b52c73496ad7d356c6f115a (patch)
tree49f55080f639dc3217e81b3ef7a529109fbb374a /epan/dissectors/packet-3g-a11.c
parent2a30b1eff977d00dd5d204d24a7f4f2745f14b0b (diff)
Get rid of a couple of warnings.
svn path=/trunk/; revision=43066
Diffstat (limited to 'epan/dissectors/packet-3g-a11.c')
-rw-r--r--epan/dissectors/packet-3g-a11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-3g-a11.c b/epan/dissectors/packet-3g-a11.c
index df80b3a23a..e57ef27806 100644
--- a/epan/dissectors/packet-3g-a11.c
+++ b/epan/dissectors/packet-3g-a11.c
@@ -536,7 +536,7 @@ decode_sse(proto_tree *ext_tree, tvbuff_t *tvb, int offset, guint ext_len)
return;
}
- msid_digits = ep_alloc(A11_MSG_MSID_LEN_MAX+2);
+ msid_digits = (char *)ep_alloc(A11_MSG_MSID_LEN_MAX+2);
msid_start_offset = offset;
if (msid_len > A11_MSG_MSID_ELEM_LEN_MAX)