Try to make Mac OS X Buildbots happy

fix return makes pointer from integer without a cast

Change-Id: Iaa55de58c36b1a59b08946836e519fee7bb889fc
Reviewed-on: https://code.wireshark.org/review/6607
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
This commit is contained in:
Alexis La Goutte 2015-01-18 10:23:10 +01:00
parent a1f2342e13
commit c60fb3038e
1 changed files with 2 additions and 2 deletions

View File

@ -580,7 +580,7 @@ geoip_db_lookup_ipv4(guint dbnum _U_, guint32 addr _U_, const char *not_found) {
if (not_found == NULL)
return NULL;
return wmem_strdup(NULL, not_found);
return (char *)wmem_strdup(NULL, not_found);
}
char *
@ -588,7 +588,7 @@ geoip_db_lookup_ipv6(guint dbnum _U_, guint32 addr _U_, const char *not_found) {
if (not_found == NULL)
return NULL;
return wmem_strdup(NULL, not_found);
return (char *)wmem_strdup(NULL, not_found);
}
gchar *