oleaut32: Use the CSTR_XXX macros instead of numeric literals.

This commit is contained in:
Francois Gouget 2012-06-20 23:41:13 +02:00 committed by Alexandre Julliard
parent ec5e3a3b50
commit 4d22dc440b
1 changed files with 1 additions and 1 deletions

View File

@ -7017,7 +7017,7 @@ HRESULT WINAPI VarBstrCmp(BSTR pbstrLeft, BSTR pbstrRight, LCID lcid, DWORD dwFl
}
hres = CompareStringW(lcid, dwFlags, pbstrLeft, lenLeft,
pbstrRight, lenRight) - 1;
pbstrRight, lenRight) - CSTR_LESS_THAN;
TRACE("%d\n", hres);
return hres;
}