Commit 4d8d8b56 authored by Dan Scott's avatar Dan Scott Committed by Alexandre Julliard

Fixed typos in _alldiv() and _allmul().

parent 284995e6
......@@ -576,8 +576,8 @@ long long WINAPI _alldiv(LARGE_INTEGER a, LARGE_INTEGER b)
#if SIZEOF_LONG_LONG==8
return (*(long long*)&a / *(long long*)&b);
#else
FIXME(ntdll,"stub\n");
retrun 0;
FIXME("stub\n");
return 0;
#endif
}
/******************************************************************************
......@@ -590,8 +590,8 @@ long long WINAPI _allmul(LARGE_INTEGER a, LARGE_INTEGER b)
#if SIZEOF_LONG_LONG==8
return (*(long long*)&a * *(long long*)&b);
#else
FIXME(ntdll,"stub\n");
retrun 0;
FIXME("stub\n");
return 0;
#endif
}
......
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