Piotr Caban : msvcr90: Fix byteswap_ulong implementation.

Alexandre Julliard julliard at winehq.org
Fri Apr 20 12:49:28 CDT 2012


Module: wine
Branch: master
Commit: c0140118be99b6965b44b867eec2c21ac2ac667f
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c0140118be99b6965b44b867eec2c21ac2ac667f

Author: Piotr Caban <piotr at codeweavers.com>
Date:   Fri Apr 20 12:16:38 2012 +0200

msvcr90: Fix byteswap_ulong implementation.

---

 dlls/msvcr90/msvcr90.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msvcr90/msvcr90.c b/dlls/msvcr90/msvcr90.c
index 2caf60d..99ae9ed 100644
--- a/dlls/msvcr90/msvcr90.c
+++ b/dlls/msvcr90/msvcr90.c
@@ -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);
 }




More information about the wine-cvs mailing list