Commit 75b53222 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

winex11.drv: Fix string format warning.

parent dd8e833d
...@@ -746,8 +746,7 @@ static BOOL UploadGlyph(X11DRV_PDEVICE *physDev, int glyph, AA_Type format) ...@@ -746,8 +746,7 @@ static BOOL UploadGlyph(X11DRV_PDEVICE *physDev, int glyph, AA_Type format)
for(j = 0; j < pitch * 8; j++) { for(j = 0; j < pitch * 8; j++) {
strcat(output, (line[j / 8] & (1 << (7 - (j % 8)))) ? "#" : " "); strcat(output, (line[j / 8] & (1 << (7 - (j % 8)))) ? "#" : " ");
} }
strcat(output, "\n"); TRACE("%s\n", output);
TRACE(output);
} }
} else { } else {
static const char blks[] = " .:;!o*#"; static const char blks[] = " .:;!o*#";
...@@ -762,8 +761,7 @@ static BOOL UploadGlyph(X11DRV_PDEVICE *physDev, int glyph, AA_Type format) ...@@ -762,8 +761,7 @@ static BOOL UploadGlyph(X11DRV_PDEVICE *physDev, int glyph, AA_Type format)
str[0] = blks[line[j] >> 5]; str[0] = blks[line[j] >> 5];
strcat(output, str); strcat(output, str);
} }
strcat(output, "\n"); TRACE("%s\n", output);
TRACE(output);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment