Michael Stefaniuc : msi/tests: Remove trailing '\'.
Module: wine Branch: master Commit: f8ec47d5c63b6f0301a874ed2132fdad3e64be11 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f8ec47d5c63b6f0301a874ed21... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Tue Sep 29 15:55:27 2009 +0200 msi/tests: Remove trailing '\'. --- dlls/msi/tests/automation.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/msi/tests/automation.c b/dlls/msi/tests/automation.c index df768ec..4af37aa 100644 --- a/dlls/msi/tests/automation.c +++ b/dlls/msi/tests/automation.c @@ -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); }
participants (1)
-
Alexandre Julliard