aboutsummaryrefslogtreecommitdiffstats
path: root/epan/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/stream.c')
-rw-r--r--epan/stream.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/stream.c b/epan/stream.c
index 03ab54a332..bb1bbc9c45 100644
--- a/epan/stream.c
+++ b/epan/stream.c
@@ -92,7 +92,7 @@ static guint stream_hash_func(gconstpointer k)
const stream_key_t *key = (const stream_key_t *)k;
/* is_circuit is redundant to the circuit/conversation pointer */
- return ((guint)(unsigned long)key->circ.circuit) ^ key->p2p_dir;
+ return (GPOINTER_TO_UINT(key->circ.circuit)) ^ key->p2p_dir;
}
/* compare func */
@@ -238,7 +238,7 @@ typedef struct fragment_key {
static guint fragment_hash_func(gconstpointer k)
{
const fragment_key_t *key = (const fragment_key_t *)k;
- return ((guint)(unsigned long)key->stream) + ((guint)key -> framenum) + ((guint)key->offset);
+ return (GPOINTER_TO_UINT(key->stream)) + ((guint)key -> framenum) + ((guint)key->offset);
}
/* compare func */