Signed-off-by: Serge Gautherie winehq-git_serge_180711@gautherie.fr --- Supersedes https://source.winehq.org/patches/data/148551.
"...\vartype.c(3808) : warning C4028: formal parameter 2 different from declaration"
ReactOS-Bug: https://jira.reactos.org/browse/CORE-7538 --- dlls/oleaut32/vartype.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/oleaut32/vartype.c b/dlls/oleaut32/vartype.c index eeef992..9e271be 100644 --- a/dlls/oleaut32/vartype.c +++ b/dlls/oleaut32/vartype.c @@ -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);
Hello,
My patch, which had "TestBot job 39900", has silently disappeared from https://source.winehq.org/patches/ . It should still be in the "middle" of the list.
What happened? What should be done? Thanks.
On 13/07/2018 23:15, Serge Gautherie wrote:
Signed-off-by: Serge Gautheriewinehq-git_serge_180711@gautherie.fr
Supersedes https://source.winehq.org/patches/data/148551.
Serge Gautherie winehq-git_serge_180711@gautherie.fr writes:
Hello,
My patch, which had "TestBot job 39900", has silently disappeared from https://source.winehq.org/patches/ . It should still be in the "middle" of the list.
What happened? What should be done?
I put in a more complete fix, so the patch was marked as superseded.