- fix warning

svn path=/trunk/; revision=25789
This commit is contained in:
Johannes Anderwald 2007-02-11 16:27:08 +00:00
parent e7889591ae
commit 519d3fe7fc

View file

@ -237,7 +237,7 @@ static BOOL msi_strequal(LPCWSTR str1, LPCSTR str2)
/* str2 is at the beginning of str1, ignoring case */
static BOOL msi_strprefix(LPCWSTR str1, LPCSTR str2)
{
DWORD len, ret;
int len, ret;
LPWSTR strW;
len = MultiByteToWideChar( CP_ACP, 0, str2, -1, NULL, 0);