aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2016-01-22 15:24:04 +0000
committerJoão Valverde <j@v6e.pt>2016-01-22 15:28:32 +0000
commitcadae1c8bee9db26fb04fb790b7df23a0f0fd1bc (patch)
tree38dbf7e0a357938e47d0af44f13fc7e804249d94 /epan
parentfc511c3f11d1e744adbf8fff6b1e46adc9776c94 (diff)
ISAKMP: Fix implicit conversion to shorter type.
Change-Id: I6b3c20d3aa1ade39739cad560d9f27242a9c8a4a Reviewed-on: https://code.wireshark.org/review/13479 Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-isakmp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-isakmp.c b/epan/dissectors/packet-isakmp.c
index 46c321621e..7608242251 100644
--- a/epan/dissectors/packet-isakmp.c
+++ b/epan/dissectors/packet-isakmp.c
@@ -5153,7 +5153,8 @@ isakmp_equal_func(gconstpointer ic1, gconstpointer ic2) {
static guint ikev2_key_hash_func(gconstpointer k) {
const ikev2_uat_data_key_t *key = (const ikev2_uat_data_key_t*)k;
- guint hash, *key_segs, key_segcount, i;
+ guint hash, *key_segs;
+ gsize key_segcount, i;
hash = 0;