Hi,
License: X11
ChangeLog:
Jon Griffiths <jon_p_griffiths@yahoo.com>
+include/winternl.h
fix msvc warning
=====
"Don't wait for the seas to part, or messiahs to come;
Don't you sit around and waste this chance..." - Live
jon_p_griffiths@yahoo.com
__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
--- wine/include/winternl.h Thu Jul 17 20:33:27 2003
+++ wine-develop/include/winternl.h Thu Jul 17 23:36:27 2003
@@ -1318,7 +1318,7 @@
__asm__("bswap %0" : "=r" (ret) : "0" (i) );
return ret;
#else
- return ((ULONG)RtlUshortByteSwap(i) << 16) | RtlUshortByteSwap(i >> 16);
+ return ((ULONG)RtlUshortByteSwap((USHORT)i) << 16) | RtlUshortByteSwap((USHORT)(i >> 16));
#endif
}