msi/tests: Remove trailing '\'.

oldstable
Michael Stefaniuc 2009-09-29 15:55:27 +02:00 committed by Alexandre Julliard
parent 22e2c111c1
commit f8ec47d5c6
1 changed files with 2 additions and 2 deletions

View File

@ -369,8 +369,8 @@ static int strcmp_ww(const WCHAR* str1, const WCHAR* str2)
{
CHAR str1A[MAX_PATH], str2A[MAX_PATH];
WideCharToMultiByte(CP_ACP, 0, str1, -1, str1A, MAX_PATH, NULL, NULL); \
WideCharToMultiByte(CP_ACP, 0, str2, -1, str2A, MAX_PATH, NULL, NULL); \
WideCharToMultiByte(CP_ACP, 0, str1, -1, str1A, MAX_PATH, NULL, NULL);
WideCharToMultiByte(CP_ACP, 0, str2, -1, str2A, MAX_PATH, NULL, NULL);
return lstrcmpA(str1A, str2A);
}