oleaut32: Use the CSTR_XXX macros instead of numeric literals.
This commit is contained in:
parent
ec5e3a3b50
commit
4d22dc440b
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue