Francois Gouget : kernel32: Fix the formatting of an NLS_IsUnicodeOnlyLcid() trace.

Alexandre Julliard julliard at winehq.org
Tue Jul 6 18:09:35 CDT 2021


Module: wine
Branch: master
Commit: ea236aa9817f89f4aea7393b366248584027cae7
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=ea236aa9817f89f4aea7393b366248584027cae7

Author: Francois Gouget <fgouget at codeweavers.com>
Date:   Mon Jul  5 23:40:05 2021 +0200

kernel32: Fix the formatting of an NLS_IsUnicodeOnlyLcid() trace.

Signed-off-by: Francois Gouget <fgouget at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/kernel32/lcformat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/kernel32/lcformat.c b/dlls/kernel32/lcformat.c
index 47f55b4b27d..a9dfbf09be2 100644
--- a/dlls/kernel32/lcformat.c
+++ b/dlls/kernel32/lcformat.c
@@ -333,7 +333,7 @@ static BOOL NLS_IsUnicodeOnlyLcid(LCID lcid)
   case LANG_MARATHI:
   case LANG_PUNJABI:
   case LANG_SANSKRIT:
-    TRACE("lcid 0x%08x: langid 0x%4x is Unicode Only\n", lcid, PRIMARYLANGID(lcid));
+    TRACE("lcid 0x%08x: langid 0x%04x is Unicode Only\n", lcid, PRIMARYLANGID(lcid));
     return TRUE;
   default:
     return FALSE;




More information about the wine-cvs mailing list