From 464ce24b40c9291362e31fb4105a781618601c89 Mon Sep 17 00:00:00 2001 From: Ken Payson Date: Tue, 24 Jan 2017 09:43:02 -0800 Subject: [PATCH] Add back comment --- src/core/lib/iomgr/socket_utils_windows.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/lib/iomgr/socket_utils_windows.c b/src/core/lib/iomgr/socket_utils_windows.c index ebca8a5ded6..5bbe8fa34c9 100644 --- a/src/core/lib/iomgr/socket_utils_windows.c +++ b/src/core/lib/iomgr/socket_utils_windows.c @@ -44,6 +44,7 @@ const char *grpc_inet_ntop(int af, const void *src, char *dst, size_t size) { #ifdef GPR_WIN_INET_NTOP return inet_ntop(af, src, dst, size); #else + /* Windows InetNtopA wants a mutable ip pointer */ return InetNtopA(af, (void *)src, dst, size); #endif /* GPR_WIN_INET_NTOP */ }