Module: wine Branch: master Commit: d421935df782613a07cd58b87c568f3c1ad9ffee URL: http://source.winehq.org/git/wine.git/?a=commit;h=d421935df782613a07cd58b87c...
Author: Michael Stefaniuc mstefani@redhat.de Date: Thu Oct 5 00:58:22 2006 +0200
opengl32: Win64 printf format warning fixes.
---
dlls/opengl32/Makefile.in | 1 - dlls/opengl32/wgl.c | 2 +- 2 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/dlls/opengl32/Makefile.in b/dlls/opengl32/Makefile.in index 76ec40b..7c06f5e 100644 --- a/dlls/opengl32/Makefile.in +++ b/dlls/opengl32/Makefile.in @@ -7,7 +7,6 @@ IMPORTLIB = libopengl32.$(IMPLIBEXT) IMPORTS = user32 gdi32 advapi32 kernel32 ntdll EXTRAINCL = @X_CFLAGS@ EXTRALIBS = @X_LIBS@ @X_PRE_LIBS@ @XLIB@ @X_EXTRA_LIBS@ @OPENGL_LIBS@ -EXTRADEFS = -DWINE_NO_LONG_AS_INT
C_SRCS = \ opengl_ext.c \ diff --git a/dlls/opengl32/wgl.c b/dlls/opengl32/wgl.c index 516e096..1c3973c 100644 --- a/dlls/opengl32/wgl.c +++ b/dlls/opengl32/wgl.c @@ -374,7 +374,7 @@ BOOL WINAPI wglUseFontOutlines_common(HD UINT em_size = 1024; RECT rc;
- TRACE("(%p, %ld, %ld, %ld, %f, %f, %d, %p, %s)\n", hdc, first, count, + TRACE("(%p, %d, %d, %d, %f, %f, %d, %p, %s)\n", hdc, first, count, listBase, deviation, extrusion, format, lpgmf, unicode ? "W" : "A");