Commit da840f57 authored by Alexandre Julliard's avatar Alexandre Julliard

msvcrt: Fix an unused variable warning.

parent 2083aa3d
...@@ -706,8 +706,9 @@ unsigned int CDECL _controlfp(unsigned int newval, unsigned int mask) ...@@ -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) int CDECL _controlfp_s(unsigned int *cur, unsigned int newval, unsigned int mask)
{ {
unsigned int flags;
#ifdef __i386__ #ifdef __i386__
unsigned int flags;
FIXME("(%p %u %u) semi-stub\n", cur, newval, mask); FIXME("(%p %u %u) semi-stub\n", cur, newval, mask);
flags = _control87( newval, mask & ~MSVCRT__EM_DENORMAL ); flags = _control87( newval, mask & ~MSVCRT__EM_DENORMAL );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment