maxminf_db.c: ad an explicit cast to please gcc 7.3.1

Change-Id: Ie97008ece77e485948a3a8d418a49b77c1a52a33
Reviewed-on: https://code.wireshark.org/review/26395
Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
This commit is contained in:
Pascal Quantin 2018-03-09 17:38:59 +01:00
parent 6c077a0818
commit c2639090de
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ static void mmdb_resolve_start(void) {
MMDB_DEBUG("spawned %s pid %d", mmdbresolve, pipe_pid);
for (guint i = 0; i < args->len; i++) {
char *arg = g_ptr_array_index(args, i);
char *arg = (char *)g_ptr_array_index(args, i);
MMDB_DEBUG("args: %s", arg);
g_free(arg);
}