From 5b9fb3c5be6f0d182df6cd4b0145548701da0652 Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Fri, 21 May 2010 12:13:36 +0200 Subject: [PATCH] winemp3.acm: Avoid using the long type. --- dlls/winemp3.acm/mpegl3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winemp3.acm/mpegl3.c b/dlls/winemp3.acm/mpegl3.c index 607450119b4..6a2dbee6c57 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 };