Commit 58abac37 authored by Michael Veksler's avatar Michael Veksler Committed by Alexandre Julliard

Fixed warnings.

parent 002106ac
...@@ -358,7 +358,7 @@ static HANDLE16 __WSAsyncDBQuery( ...@@ -358,7 +358,7 @@ static HANDLE16 __WSAsyncDBQuery(
aq->sbuf = (SEGPTR)sbuf; aq->sbuf = (SEGPTR)sbuf;
aq->sbuflen = sbuflen; aq->sbuflen = sbuflen;
#if 1 #if 1
hthread = CreateThread(NULL,NULL,_async_queryfun,aq,0,NULL); hthread = CreateThread(NULL,0,_async_queryfun,aq,0,NULL);
if (hthread==INVALID_HANDLE_VALUE) if (hthread==INVALID_HANDLE_VALUE)
#endif #endif
_async_queryfun(aq); _async_queryfun(aq);
......
...@@ -208,7 +208,9 @@ static int DOSCONF_Files(char **confline) ...@@ -208,7 +208,9 @@ static int DOSCONF_Files(char **confline)
static int DOSCONF_Install(char **confline) static int DOSCONF_Install(char **confline)
{ {
#if 0
int loadhigh = 0; int loadhigh = 0;
#endif
*confline += 7; /* strlen("INSTALL") */ *confline += 7; /* strlen("INSTALL") */
if (!(DOSCONF_JumpToEntry(confline, '='))) return 0; if (!(DOSCONF_JumpToEntry(confline, '='))) return 0;
......
...@@ -561,7 +561,7 @@ BOOL WINAPI GetUserObjectSecurity(HANDLE hObj, SECURITY_INFORMATION * pSIRequest ...@@ -561,7 +561,7 @@ BOOL WINAPI GetUserObjectSecurity(HANDLE hObj, SECURITY_INFORMATION * pSIRequest
* SetSystemCursor (USER32.507) * SetSystemCursor (USER32.507)
*/ */
BOOL WINAPI SetSystemCursor(HCURSOR hcur, DWORD id) BOOL WINAPI SetSystemCursor(HCURSOR hcur, DWORD id)
{ FIXME(win32,"(%08x,%08x),stub!\n", hcur, id); { FIXME(win32,"(%08x,%08lx),stub!\n", hcur, id);
return TRUE; return TRUE;
} }
......
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