aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-zbee-nwk-gp.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2014-01-07 18:08:02 +0000
committerAnders Broman <anders.broman@ericsson.com>2014-01-07 18:08:02 +0000
commit8da8e47ab195e51891a149ef8e3b7cdb203d94fe (patch)
treef830c1b94c9134254a989d14924b661ff5439112 /epan/dissectors/packet-zbee-nwk-gp.c
parent43252e322e12e5fc96bebf14ef7593553d5da8fd (diff)
Try to get rid of some warnings.
svn path=/trunk/; revision=54626
Diffstat (limited to 'epan/dissectors/packet-zbee-nwk-gp.c')
-rw-r--r--epan/dissectors/packet-zbee-nwk-gp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-zbee-nwk-gp.c b/epan/dissectors/packet-zbee-nwk-gp.c
index 41fb2ac270..8881b9c029 100644
--- a/epan/dissectors/packet-zbee-nwk-gp.c
+++ b/epan/dissectors/packet-zbee-nwk-gp.c
@@ -586,7 +586,7 @@ static void *
uat_key_record_copy_cb(void *n, const void *o, size_t siz _U_)
{
uat_key_record_t *new_key = (uat_key_record_t *)n;
- const uat_key_record_t *old_key = (uat_key_record_t *)o;
+ const uat_key_record_t *old_key = (const uat_key_record_t *)o;
if (old_key->string) {
new_key->string = g_strdup(old_key->string);