Commit c0140118 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcr90: Fix byteswap_ulong implementation.

parent caf15dd7
......@@ -378,7 +378,7 @@ unsigned short CDECL _byteswap_ushort(unsigned short s)
/*********************************************************************
* _byteswap_ulong (MSVCR90.@)
*/
unsigned long CDECL _byteswap_ulong(unsigned long l)
ULONG CDECL _byteswap_ulong(ULONG l)
{
return (l<<24) + ((l<<8)&0xFF0000) + ((l>>8)&0xFF00) + (l>>24);
}
......
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