Commit 5b9fb3c5 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

winemp3.acm: Avoid using the long type.

parent 309e92f4
......@@ -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 };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment