mirror of
https://github.com/reactos/reactos.git
synced 2026-06-01 00:40:26 +08:00
[OLEAUT32] Fix an MSVC warning about VarCyMul()
"...\vartype.c(3808) : warning C4028: formal parameter 2 different from declaration"
Mininal cherry-pick Alexandre Julliard 18f7ec3670
CORE-7538
This commit is contained in:
committed by
Mark Jansen
parent
bd2ab1e9bc
commit
2ad650469e
@@ -3804,7 +3804,7 @@ HRESULT WINAPI VarCyAdd(const CY cyLeft, const CY cyRight, CY* pCyOut)
|
||||
* Success: S_OK.
|
||||
* Failure: DISP_E_OVERFLOW, if the value will not fit in the destination
|
||||
*/
|
||||
HRESULT WINAPI VarCyMul(const CY cyLeft, const CY cyRight, CY* pCyOut)
|
||||
HRESULT WINAPI VarCyMul(const CY cyLeft, CY cyRight, CY* pCyOut)
|
||||
{
|
||||
double l,r;
|
||||
_VarR8FromCy(cyLeft, &l);
|
||||
|
||||
Reference in New Issue
Block a user