Skip to content
Snippets Groups Projects
Commit 97c8bc97 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

fixed cast added with last commit.

parent 2cad0954
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,7 @@ char *Curl_inet_ntop(int af, const void *addr, char *buf, size_t size);
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif
#define Curl_inet_ntop(af,addr,buf,size) inet_ntop(af,addr,buf,(size_t)size)
#define Curl_inet_ntop(af,addr,buf,size) inet_ntop(af,addr,buf,(socklen_t)size)
#endif
#endif /* __INET_NTOP_H */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment