Commit 0d7613fc authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 90aad327
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment