diff options
Diffstat (limited to 'src/backend/port/win32/socket.c')
-rw-r--r-- | src/backend/port/win32/socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/port/win32/socket.c b/src/backend/port/win32/socket.c index e2ae0f8e4f5..c918da981b2 100644 --- a/src/backend/port/win32/socket.c +++ b/src/backend/port/win32/socket.c @@ -373,7 +373,7 @@ pgwin32_recv(SOCKET s, char *buf, int len, int f) * The second argument to send() is defined by SUS to be a "const void *" * and so we use the same signature here to keep compilers happy when * handling callers. - * + * * But the buf member of a WSABUF struct is defined as "char *", so we cast * the second argument to that here when assigning it, also to keep compilers * happy. |