[PATCH 1/2] kernel32: Don't print a FIXME for languages with ANSI codepage 0.

Michael Stefaniuc mstefani at redhat.de
Thu Nov 25 14:58:34 CST 2010


---
 dlls/kernel32/locale.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/kernel32/locale.c b/dlls/kernel32/locale.c
index 927d058..8b80f7d 100644
--- a/dlls/kernel32/locale.c
+++ b/dlls/kernel32/locale.c
@@ -2424,7 +2424,7 @@ BOOL WINAPI GetStringTypeA( LCID locale, DWORD type, LPCSTR src, INT count, LPWO
 
     if (!(cp = get_lcid_codepage( locale )))
     {
-        FIXME("For locale %04x using current ANSI code page\n", locale);
+        TRACE("No ANSI codepage for locale %04x. Using current ANSI code page\n", locale);
         cp = GetACP();
     }
 
-- 
1.7.3.2



More information about the wine-patches mailing list