Skip to content
Snippets Groups Projects
Commit 5d04f652 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard
Browse files

Compiler warnings fix.

parent f2163108
No related branches found
Tags wine-970101
No related merge requests found
......@@ -752,7 +752,7 @@ AccessCheck(PSECURITY_DESCRIPTOR pSecurityDescriptor, HANDLE ClientToken,
BOOL WINAPI SetThreadToken(PHANDLE thread, HANDLE token)
{
FIXME_(advapi)("(%p, %p): stub\n", thread, token);
FIXME_(advapi)("(%p, %x): stub\n", thread, token);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
......
......@@ -10,7 +10,7 @@
#ifndef __ELF__
/* if not, force dosmod at high addresses */
asm(".org 0x110000");
#endif __ELF__
#endif /* __ELF__ */
#include <stdio.h>
#include <stdlib.h>
......
......@@ -977,7 +977,7 @@ BOOL WINAPI _MPR_25( LPBYTE lpMem, INT len )
*/
DWORD WINAPI WNetGetUniversalNameA ( LPCSTR lpLocalPath, DWORD dwInfoLevel, LPVOID lpBuffer, LPDWORD lpBufferSize )
{
FIXME_(mpr)( "(%s, 0x%08x, %p, %p): stub\n", lpLocalPath, dwInfoLevel, lpBuffer, lpBufferSize);
FIXME_(mpr)( "(%s, 0x%08lx, %p, %p): stub\n", lpLocalPath, dwInfoLevel, lpBuffer, lpBufferSize);
SetLastError(WN_NO_NETWORK);
return WN_NO_NETWORK;
......@@ -988,7 +988,7 @@ DWORD WINAPI WNetGetUniversalNameA ( LPCSTR lpLocalPath, DWORD dwInfoLevel, LPVO
*/
DWORD WINAPI WNetGetUniversalNameW ( LPCWSTR lpLocalPath, DWORD dwInfoLevel, LPVOID lpBuffer, LPDWORD lpBufferSize )
{
FIXME_(mpr)( "(%s, 0x%08x, %p, %p): stub\n", debugstr_w(lpLocalPath), dwInfoLevel, lpBuffer, lpBufferSize);
FIXME_(mpr)( "(%s, 0x%08lx, %p, %p): stub\n", debugstr_w(lpLocalPath), dwInfoLevel, lpBuffer, lpBufferSize);
SetLastError(WN_NO_NETWORK);
return WN_NO_NETWORK;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment