winex11.drv: Fix string format warning.

This commit is contained in:
Vincent Povirk 2008-12-04 21:18:52 -06:00 committed by Alexandre Julliard
parent dd8e833db2
commit 75b5322242
1 changed files with 2 additions and 4 deletions

View File

@ -746,8 +746,7 @@ static BOOL UploadGlyph(X11DRV_PDEVICE *physDev, int glyph, AA_Type format)
for(j = 0; j < pitch * 8; j++) {
strcat(output, (line[j / 8] & (1 << (7 - (j % 8)))) ? "#" : " ");
}
strcat(output, "\n");
TRACE(output);
TRACE("%s\n", output);
}
} else {
static const char blks[] = " .:;!o*#";
@ -762,8 +761,7 @@ static BOOL UploadGlyph(X11DRV_PDEVICE *physDev, int glyph, AA_Type format)
str[0] = blks[line[j] >> 5];
strcat(output, str);
}
strcat(output, "\n");
TRACE(output);
TRACE("%s\n", output);
}
}
}