From f71a826f2c469bd0f5de11646056ff31928fee26 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Fri, 21 Feb 2014 15:49:06 +0000 Subject: [PATCH] =?utf8?q?[FONTVIEW]=20Unescaped=20use=20of=20percent=20ch?= =?utf8?q?aracter=20in=20a=20format=20string=20causes=20percent=20glyph=20?= =?utf8?q?not=20to=20be=20displayed.=20Patch=20by=20Andr=C3=A9=20Guibert?= =?utf8?q?=20de=20Bruet.=20CORE-7934=20#resolve=20#comment=20Fixed=20in=20?= =?utf8?q?revision=2062281,=20thanks=20;)?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit svn path=/trunk/; revision=62281 --- reactos/base/applications/fontview/display.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/base/applications/fontview/display.c b/reactos/base/applications/fontview/display.c index f00992cf028..9e1f2f215a6 100644 --- a/reactos/base/applications/fontview/display.c +++ b/reactos/base/applications/fontview/display.c @@ -113,7 +113,7 @@ Display_DrawText(HDC hDC, DISPLAYDATA* pData, int nYPos) TextOutW(hDC, 0, y, szCaption, (INT)wcslen(szCaption)); y += tm.tmHeight + 1; - swprintf(szCaption, L"0123456789.:,;(\"~!@#$%^&*')"); + swprintf(szCaption, L"0123456789.:,;(\"~!@#$%%^&*')"); TextOutW(hDC, 0, y, szCaption, (INT)wcslen(szCaption)); y += tm.tmHeight + 1; -- 2.17.1