Commit cad91b8d authored by Mikhail Maroukhine's avatar Mikhail Maroukhine Committed by Alexandre Julliard

ws2_32: Fix compiler warnings with flag -Wcast-qual.

parent 968b98f8
......@@ -3352,7 +3352,7 @@ int WINAPI WS_setsockopt(SOCKET s, int level, int optname,
return SOCKET_ERROR;
}
get_per_thread_data()->opentype = *(const int *)optval;
TRACE("setting global SO_OPENTYPE = 0x%x\n", *((int*)optval) );
TRACE("setting global SO_OPENTYPE = 0x%x\n", *((const int*)optval) );
return 0;
#ifdef SO_RCVTIMEO
......
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