Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
6ef43211
Commit
6ef43211
authored
Oct 05, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 06, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comdlg32/tests: Win64 printf format warning fixes.
parent
8fac9960
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
3 deletions
+2
-3
Makefile.in
dlls/comdlg32/tests/Makefile.in
+0
-1
printdlg.c
dlls/comdlg32/tests/printdlg.c
+2
-2
No files found.
dlls/comdlg32/tests/Makefile.in
View file @
6ef43211
...
...
@@ -4,7 +4,6 @@ SRCDIR = @srcdir@
VPATH
=
@srcdir@
TESTDLL
=
comdlg32.dll
IMPORTS
=
comdlg32 kernel32
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
CTESTS
=
\
printdlg.c
...
...
dlls/comdlg32/tests/printdlg.c
View file @
6ef43211
...
...
@@ -61,7 +61,7 @@ static void test_PrintDlgA(void)
SetLastError
(
0xdeadbeef
);
res
=
PrintDlgA
(
pDlg
);
ok
(
!
res
&&
(
CommDlgExtendedError
()
==
CDERR_STRUCTSIZE
),
"returned %
ld with 0x%lx and 0x%l
x (expected '0' and "
\
"returned %
d with 0x%x and 0x%
x (expected '0' and "
\
"CDERR_STRUCTSIZE)
\n
"
,
res
,
GetLastError
(),
CommDlgExtendedError
());
...
...
@@ -71,7 +71,7 @@ static void test_PrintDlgA(void)
SetLastError
(
0xdeadbeef
);
res
=
PrintDlgA
(
pDlg
);
ok
(
res
||
(
CommDlgExtendedError
()
==
PDERR_NODEFAULTPRN
),
"returned %
ld with 0x%lx and 0x%l
x (expected '!= 0' or '0' and "
\
"returned %
d with 0x%x and 0x%
x (expected '!= 0' or '0' and "
\
"PDERR_NODEFAULTPRN)
\n
"
,
res
,
GetLastError
(),
CommDlgExtendedError
());
HeapFree
(
GetProcessHeap
(),
0
,
pDlg
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment