Piotr Caban : msvcrt: Fix modff signature.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Feb 3 07:40:01 CST 2016


Module: wine
Branch: stable
Commit: 96fcbfdd1580e15adaceaadac6b9322c4d71d1cb
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=96fcbfdd1580e15adaceaadac6b9322c4d71d1cb

Author: Piotr Caban <piotr at codeweavers.com>
Date:   Fri Jan 15 17:01:02 2016 +0100

msvcrt: Fix modff signature.

Signed-off-by: Piotr Caban <piotr at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>
(cherry picked from commit 0806b06f2ba7a690661d6ae417270bdbc7370953)
Signed-off-by: Michael Stefaniuc <mstefani at winehq.org>

---

 dlls/msvcrt/math.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msvcrt/math.c b/dlls/msvcrt/math.c
index 2459bf5..557bcec 100644
--- a/dlls/msvcrt/math.c
+++ b/dlls/msvcrt/math.c
@@ -331,7 +331,7 @@ float CDECL MSVCRT__scalbf(float num, MSVCRT_long power)
 /*********************************************************************
  *      modff (MSVCRT.@)
  */
-double CDECL MSVCRT_modff( float x, float *iptr )
+float CDECL MSVCRT_modff( float x, float *iptr )
 {
   return modff( x, iptr );
 }




More information about the wine-cvs mailing list