Module: wine Branch: master Commit: 7a0430d0e8bd1e1266e20f655ab03e223b26bb00 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7a0430d0e8bd1e1266e20f655a...
Author: Paul Vriens Paul.Vriens.Wine@gmail.com Date: Sun Oct 11 10:21:26 2009 +0200
shell32/tests: Fix test failure on Cyrillic locales.
---
dlls/shell32/tests/shlfileop.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/shell32/tests/shlfileop.c b/dlls/shell32/tests/shlfileop.c index cbd6025..33d1a94 100644 --- a/dlls/shell32/tests/shlfileop.c +++ b/dlls/shell32/tests/shlfileop.c @@ -48,8 +48,8 @@ "Expected %d, got %d\n", ret, retval)
static CHAR CURR_DIR[MAX_PATH]; -static const WCHAR UNICODE_PATH[] = {'c',':','\',0x00c4,'\0','\0'}; - /* "c:\Ä", or "c:\A" with diaeresis */ +static const WCHAR UNICODE_PATH[] = {'c',':','\',0x00ae,'\0','\0'}; + /* "c:\®" can be used in all codepages */ /* Double-null termination needed for pFrom field of SHFILEOPSTRUCT */
static HMODULE hshell32;