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>
This commit is contained in:
João Valverde 2016-01-22 15:24:04 +00:00 committed by João Valverde
parent fc511c3f11
commit cadae1c8be
1 changed files with 2 additions and 1 deletions

View File

@ -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;