aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pdcp-lte.c
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2012-10-07 15:59:26 +0000
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2012-10-07 15:59:26 +0000
commitaf71608df6dc6c4c3c5c913e1c8837c5242ac264 (patch)
tree69f0c54703c1d6dc4e1d1444c395a63ce9ba50de /epan/dissectors/packet-pdcp-lte.c
parent96386ec1da686fc95c151ebb4fab42765ae759ee (diff)
Use GPOINTER_TO_UINT macro.
svn path=/trunk/; revision=45368
Diffstat (limited to 'epan/dissectors/packet-pdcp-lte.c')
-rw-r--r--epan/dissectors/packet-pdcp-lte.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-pdcp-lte.c b/epan/dissectors/packet-pdcp-lte.c
index cff1a2674b..2f5833b477 100644
--- a/epan/dissectors/packet-pdcp-lte.c
+++ b/epan/dissectors/packet-pdcp-lte.c
@@ -269,7 +269,7 @@ static gint pdcp_channel_equal(gconstpointer v, gconstpointer v2)
static guint pdcp_channel_hash_func(gconstpointer v)
{
/* Just use pointer, as the fields are all in this value */
- return (guint)v;
+ return GPOINTER_TO_UINT(v);
}