Commit 8efedaf0 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

wininet: Use proper argument type for ioctlsocket argument.

parent e4cb3b50
......@@ -1274,7 +1274,8 @@ static void FTPFILE_AsyncQueryDataAvailableProc(task_header_t *task)
static DWORD FTPFILE_QueryDataAvailable(object_header_t *hdr, DWORD *available, DWORD flags, DWORD_PTR ctx)
{
ftp_file_t *file = (ftp_file_t*) hdr;
int retval, unread = 0;
ULONG unread = 0;
int retval;
TRACE("(%p %p %x %lx)\n", file, available, flags, ctx);
......
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