Fix format ‘%p’ expects argument of type ‘void *’ warning.

pull/152/head
Carlos Maddela 2016-12-09 15:40:51 +11:00 committed by rofl0r
parent 4b413c902f
commit 167780ce36
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,7 @@ int getaddrinfo(const char *node, const char *service, const struct addrinfo *hi
void freeaddrinfo(struct addrinfo *res) {
INIT();
PDEBUG("freeaddrinfo %p \n", res);
PDEBUG("freeaddrinfo %p \n", (void *) res);
if(!proxychains_resolver)
true_freeaddrinfo(res);