summaryrefslogtreecommitdiff
path: root/lib/inet_ntop.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-11-23 08:30:18 +0100
committerDaniel Stenberg <daniel@haxx.se>2016-11-24 23:58:22 +0100
commit8657c268e1938c4bd9200b7f5ab69ba156310403 (patch)
tree99d43e4150f9f57a1b62f3439da028fa38e55769 /lib/inet_ntop.c
parentec0a5c96ac2f31d09651f04c8b24a30d1f6fa118 (diff)
downloadcurl-8657c268e1938c4bd9200b7f5ab69ba156310403.tar.gz
checksrc: white space edits to comply to stricter checksrc
Diffstat (limited to 'lib/inet_ntop.c')
-rw-r--r--lib/inet_ntop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inet_ntop.c b/lib/inet_ntop.c
index 416005c03..38311e314 100644
--- a/lib/inet_ntop.c
+++ b/lib/inet_ntop.c
@@ -184,10 +184,10 @@ char *Curl_inet_ntop(int af, const void *src, char *buf, size_t size)
{
switch (af) {
case AF_INET:
- return inet_ntop4((const unsigned char*)src, buf, size);
+ return inet_ntop4((const unsigned char *)src, buf, size);
#ifdef ENABLE_IPV6
case AF_INET6:
- return inet_ntop6((const unsigned char*)src, buf, size);
+ return inet_ntop6((const unsigned char *)src, buf, size);
#endif
default:
SET_ERRNO(EAFNOSUPPORT);