Alexandre Julliard : msvcrt: Fix an unused variable warning.

Alexandre Julliard julliard at winehq.org
Wed Apr 7 11:56:10 CDT 2010


Module: wine
Branch: master
Commit: da840f57e5902b39c23c220a03679367a1554717
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=da840f57e5902b39c23c220a03679367a1554717

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Wed Apr  7 14:25:19 2010 +0200

msvcrt: Fix an unused variable warning.

---

 dlls/msvcrt/math.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/msvcrt/math.c b/dlls/msvcrt/math.c
index fb2cd86..93e13d0 100644
--- a/dlls/msvcrt/math.c
+++ b/dlls/msvcrt/math.c
@@ -706,8 +706,9 @@ unsigned int CDECL _controlfp(unsigned int newval, unsigned int mask)
  */
 int CDECL _controlfp_s(unsigned int *cur, unsigned int newval, unsigned int mask)
 {
-    unsigned int flags;
 #ifdef __i386__
+    unsigned int flags;
+
     FIXME("(%p %u %u) semi-stub\n", cur, newval, mask);
 
     flags = _control87( newval, mask & ~MSVCRT__EM_DENORMAL );




More information about the wine-cvs mailing list