mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
cards: Win64 printf format warning fixes.
This commit is contained in:
parent
6520ee04c8
commit
9f725a2719
2 changed files with 2 additions and 3 deletions
|
@ -5,7 +5,6 @@ VPATH = @srcdir@
|
|||
MODULE = cards.dll
|
||||
IMPORTLIB = libcards.$(IMPLIBEXT)
|
||||
IMPORTS = user32 gdi32 kernel32
|
||||
EXTRADEFS = -DWINE_NO_LONG_AS_INT
|
||||
|
||||
C_SRCS = \
|
||||
cards.c
|
||||
|
|
|
@ -94,7 +94,7 @@ BOOL WINAPI cdtDrawExt(HDC hdc, int x, int y, int dx, int dy, int card, int mode
|
|||
BOOL eraseFlag = FALSE;
|
||||
BOOL drawFlag = TRUE;
|
||||
|
||||
TRACE("(%p, %d, %d, %d, %d, %d, %d, %ld)\n", hdc, x, y, dx, dy, card, mode, color);
|
||||
TRACE("(%p, %d, %d, %d, %d, %d, %d, %d)\n", hdc, x, y, dx, dy, card, mode, color);
|
||||
|
||||
roundCornersFlag = !(mode & MODEFLAG_DONT_ROUND_CORNERS) &&
|
||||
(dx == cardWidth) && (dy == cardHeight);
|
||||
|
@ -243,7 +243,7 @@ BOOL WINAPI cdtDrawExt(HDC hdc, int x, int y, int dx, int dy, int card, int mode
|
|||
*/
|
||||
BOOL WINAPI cdtDraw(HDC hdc, int x, int y, int card, int mode, DWORD color)
|
||||
{
|
||||
TRACE("(%p, %d, %d, %d, %d, %ld)\n", hdc, x, y, card, mode, color);
|
||||
TRACE("(%p, %d, %d, %d, %d, %d)\n", hdc, x, y, card, mode, color);
|
||||
|
||||
return cdtDrawExt(hdc, x, y, cardWidth, cardHeight, card, mode, color);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue