From 939bb40dbb6b7162263ef3b63d61f0279a8a84f0 Mon Sep 17 00:00:00 2001 From: Austin English Date: Tue, 11 Nov 2008 17:55:16 -0600 Subject: [PATCH] winex11.drv: fix a compiler warning --- dlls/winex11.drv/xrender.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/winex11.drv/xrender.c b/dlls/winex11.drv/xrender.c index 08bb71f..a606643 100644 --- a/dlls/winex11.drv/xrender.c +++ b/dlls/winex11.drv/xrender.c @@ -747,7 +747,7 @@ static BOOL UploadGlyph(X11DRV_PDEVICE *physDev, int glyph, AA_Type format) strcat(output, (line[j / 8] & (1 << (7 - (j % 8)))) ? "#" : " "); } strcat(output, "\n"); - TRACE(output); + TRACE(output, "%s"); } } else { static const char blks[] = " .:;!o*#"; @@ -763,7 +763,7 @@ static BOOL UploadGlyph(X11DRV_PDEVICE *physDev, int glyph, AA_Type format) strcat(output, str); } strcat(output, "\n"); - TRACE(output); + TRACE(output, "%s"); } } } -- 1.5.6.3