mirror of
https://github.com/rofl0r/proxychains-ng.git
synced 2025-09-05 16:26:57 +00:00
Fix format ‘%p’ expects argument of type ‘void *’ warning.
This commit is contained in:
@ -425,7 +425,7 @@ int getaddrinfo(const char *node, const char *service, const struct addrinfo *hi
|
|||||||
|
|
||||||
void freeaddrinfo(struct addrinfo *res) {
|
void freeaddrinfo(struct addrinfo *res) {
|
||||||
INIT();
|
INIT();
|
||||||
PDEBUG("freeaddrinfo %p \n", res);
|
PDEBUG("freeaddrinfo %p \n", (void *) res);
|
||||||
|
|
||||||
if(!proxychains_resolver)
|
if(!proxychains_resolver)
|
||||||
true_freeaddrinfo(res);
|
true_freeaddrinfo(res);
|
||||||
|
Reference in New Issue
Block a user