winemp3.acm: Avoid using the long type.

This commit is contained in:
Michael Stefaniuc 2010-05-21 12:13:36 +02:00 committed by Alexandre Julliard
parent 309e92f449
commit 5b9fb3c5be
1 changed files with 1 additions and 1 deletions

View File

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