Module: wine Branch: master Commit: 5b9fb3c5be6f0d182df6cd4b0145548701da0652 URL: http://source.winehq.org/git/wine.git/?a=commit;h=5b9fb3c5be6f0d182df6cd4b01...
Author: Michael Stefaniuc mstefani@redhat.de Date: Fri May 21 12:13:36 2010 +0200
winemp3.acm: Avoid using the long type.
---
dlls/winemp3.acm/mpegl3.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winemp3.acm/mpegl3.c b/dlls/winemp3.acm/mpegl3.c index 6074501..6a2dbee 100644 --- a/dlls/winemp3.acm/mpegl3.c +++ b/dlls/winemp3.acm/mpegl3.c @@ -298,7 +298,7 @@ typedef struct tagAcmMpeg3Data OSStatus lastError; } AcmMpeg3Data;
-static inline const char* wine_dbgstr_fourcc(unsigned long fourcc) +static inline const char* wine_dbgstr_fourcc(ULONG fourcc) { char buf[4] = { (char) (fourcc >> 24), (char) (fourcc >> 16), (char) (fourcc >> 8), (char) fourcc };