Commit d5c40bbe authored by Jon Griffiths's avatar Jon Griffiths Committed by Alexandre Julliard

NTDLL__CIpow returns double, not LONG.

parent cb2abbc2
......@@ -72,7 +72,7 @@ LONG __cdecl NTDLL__ftol(double fl)
* _CIpow (NTDLL)
*/
#ifdef USING_REAL_FPU
LONG __cdecl NTDLL__CIpow(void)
double __cdecl NTDLL__CIpow(void)
{
double x,y;
POP_FPU(y);
......@@ -80,7 +80,7 @@ LONG __cdecl NTDLL__CIpow(void)
return pow(x,y);
}
#else
LONG __cdecl NTDLL__CIpow(double x,double y)
double __cdecl NTDLL__CIpow(double x,double y)
{
FIXME("should be register function\n");
return pow(x,y);
......
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