winhttp: Remove const to fix a warning with the Microsoft headers.

This commit is contained in:
Alexandre Julliard 2015-03-17 00:19:19 +09:00
parent 90aad327ae
commit 0d7613fc98
1 changed files with 2 additions and 2 deletions

View File

@ -983,10 +983,10 @@ static BOOL secure_proxy_connect( request_t *request )
#define INET6_ADDRSTRLEN 46
#endif
static WCHAR *addr_to_str( const struct sockaddr *addr )
static WCHAR *addr_to_str( struct sockaddr *addr )
{
char buf[INET6_ADDRSTRLEN];
const void *src;
void *src;
switch (addr->sa_family)
{