mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
Fix prototype of pgwin32_bind().
I (tgl) had copied-and-pasted this from pgwin32_accept(), failing to notice that the third parameter should be "int" not "int *". David Rowley
This commit is contained in:
@ -265,7 +265,7 @@ pgwin32_socket(int af, int type, int protocol)
|
||||
}
|
||||
|
||||
int
|
||||
pgwin32_bind(SOCKET s, struct sockaddr * addr, int *addrlen)
|
||||
pgwin32_bind(SOCKET s, struct sockaddr * addr, int addrlen)
|
||||
{
|
||||
int res;
|
||||
|
||||
|
Reference in New Issue
Block a user