[pkg-wine-party] [SCM] Debian Wine packaging branch, wheezy, updated. wine-1.4-7-302-gb61b690

Alexandre Julliard julliard at winehq.org
Sun Jun 17 20:04:15 UTC 2012


The following commit has been merged in the wheezy branch:
commit db0d957d14d7b81887ecba5a3ef6edd445ff67a0
Author: Piotr Caban <piotr at codeweavers.com>
Date:   Fri Apr 20 12:16:38 2012 +0200

    msvcr90: Fix byteswap_ulong implementation.
    (cherry picked from commit c0140118be99b6965b44b867eec2c21ac2ac667f)

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);
 }

-- 
Debian Wine packaging



More information about the pkg-wine-party mailing list