mirror of
https://github.com/reactos/wine.git
synced 2025-02-02 02:04:34 +00:00
localspl/tests: Win64 printf format warning fixes.
This commit is contained in:
parent
84473e5bfc
commit
4a4c025a52
@ -4,7 +4,6 @@ SRCDIR = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
TESTDLL = localspl.dll
|
||||
IMPORTS = kernel32
|
||||
EXTRADEFS = -DWINE_NO_LONG_AS_INT
|
||||
|
||||
CTESTS = \
|
||||
localmon.c
|
||||
|
@ -51,13 +51,13 @@ static void test_InitializePrintMonitor(void)
|
||||
SetLastError(0xdeadbeef);
|
||||
res = pInitializePrintMonitor(NULL);
|
||||
ok( (res == NULL) && (GetLastError() == ERROR_INVALID_PARAMETER),
|
||||
"returned %p with %ld\n (expected NULL with " \
|
||||
"returned %p with %d\n (expected NULL with " \
|
||||
"ERROR_INVALID_PARAMETER)\n", res, GetLastError());
|
||||
|
||||
SetLastError(0xdeadbeef);
|
||||
res = pInitializePrintMonitor((LPWSTR) emptyW);
|
||||
ok( (res == NULL) && (GetLastError() == ERROR_INVALID_PARAMETER),
|
||||
"returned %p with %ld\n (expected NULL with " \
|
||||
"returned %p with %d\n (expected NULL with " \
|
||||
"ERROR_INVALID_PARAMETER)\n", res, GetLastError());
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user