Commit 4d22dc44 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

oleaut32: Use the CSTR_XXX macros instead of numeric literals.

parent ec5e3a3b
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment