aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h223.c
diff options
context:
space:
mode:
authorAnders <anders.broman@ericsson.com>2015-06-04 14:28:40 +0200
committerAnders Broman <a.broman58@gmail.com>2015-06-04 13:32:17 +0000
commit8d78077d0d931c6afee6d0e27b5df7c5477e21e5 (patch)
treeb8f95e3205d242512acdf6407126815ded24dd5c /epan/dissectors/packet-h223.c
parent539418c91732b71985117a01e1db42436baa83cc (diff)
[MSVC2015] TRy to fix Warnings turned errors.
Change-Id: I1156e66daad84004f4f7acae0175fcbb475db71a Reviewed-on: https://code.wireshark.org/review/8760 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-h223.c')
-rw-r--r--epan/dissectors/packet-h223.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-h223.c b/epan/dissectors/packet-h223.c
index 4e5f3927ae..590b76dc6b 100644
--- a/epan/dissectors/packet-h223.c
+++ b/epan/dissectors/packet-h223.c
@@ -193,7 +193,7 @@ static guint
circuit_chain_hash (gconstpointer v)
{
const circuit_chain_key *key = (const circuit_chain_key *)v;
- guint hash_val = ((guint32)(unsigned long)(key->call))^(((guint32)key->vc) << 16);
+ guint hash_val = (GPOINTER_TO_UINT(key->call))^(((guint32)key->vc) << 16);
return hash_val;
}