1
0
mirror of https://github.com/rofl0r/proxychains-ng synced 2026-05-15 10:03:23 +08:00

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

This commit is contained in:
Carlos Maddela
2016-12-09 15:40:51 +11:00
committed by rofl0r
Unverified
parent 4b413c902f
commit 167780ce36
+1 -1
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);