From 9f725a2719692cfd2894c92dd61470c12083a633 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Tue, 3 Oct 2006 23:38:17 +0200 Subject: [PATCH] cards: Win64 printf format warning fixes. --- dlls/cards/Makefile.in | 1 - dlls/cards/cards.c | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/dlls/cards/Makefile.in b/dlls/cards/Makefile.in index 0433d06626c..cf6514441ad 100644 --- a/dlls/cards/Makefile.in +++ b/dlls/cards/Makefile.in @@ -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 diff --git a/dlls/cards/cards.c b/dlls/cards/cards.c index 7938bc10062..5baf47a61e7 100644 --- a/dlls/cards/cards.c +++ b/dlls/cards/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); }