Fix debug message
authorHervé Poussineau <hpoussin@reactos.org>
Sun, 8 Jun 2008 09:52:56 +0000 (09:52 +0000)
committerHervé Poussineau <hpoussin@reactos.org>
Sun, 8 Jun 2008 09:52:56 +0000 (09:52 +0000)
svn path=/trunk/; revision=33899

reactos/dll/win32/gdi32/objects/font.c

index 02fdf55..05b59ad 100644 (file)
@@ -109,7 +109,7 @@ static LPWSTR FONT_mbtowc(HDC hdc, LPCSTR str, INT count, INT *plenW, UINT *pCP)
     lenW = MultiByteToWideChar(cp, 0, str, count, NULL, 0);
     strW = HeapAlloc(GetProcessHeap(), 0, lenW*sizeof(WCHAR));
     MultiByteToWideChar(cp, 0, str, count, strW, lenW);
-    DPRINT1("mapped %s -> %s  \n", str, strW);
+    DPRINT1("mapped %s -> %S\n", str, strW);
     if(plenW) *plenW = lenW;
     if(pCP) *pCP = cp;
     return strW;