mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[0.4.9][OLEAUT32] Fix an MSVC warning about VarCyMul() CORE-7538
Observable in MSVC2010SP1 dbg config: "...\vartype.c(3808) : warning C4028: formal parameter 2 different from declaration" Minimal cherry-pick Alexandre Julliard18f7ec3670
The fix was picked from 0.4.10-dev-512-g2ad650469e
This commit is contained in:
parent
d0da8ae534
commit
106dd706d8
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue