summaryrefslogtreecommitdiffstats
path: root/lib/rbcodec/metadata/metadata_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/metadata/metadata_common.h')
-rw-r--r--lib/rbcodec/metadata/metadata_common.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/rbcodec/metadata/metadata_common.h b/lib/rbcodec/metadata/metadata_common.h
index 14115b745a..0f6fcb279c 100644
--- a/lib/rbcodec/metadata/metadata_common.h
+++ b/lib/rbcodec/metadata/metadata_common.h
@@ -30,7 +30,8 @@
#define TAG_NAME_LENGTH 32
#define TAG_VALUE_LENGTH 128
-#define FOURCC(a,b,c,d) (((a)<<24) | ((b) << 16) | ((c) << 8) | (d))
+#define FOURCC(a,b,c,d) ((((unsigned long)(a)) << 24) | (((unsigned long)(b)) << 16) | \
+ (((unsigned long)(c)) << 8) | ((unsigned long)(d)))
enum tagtype { TAGTYPE_APE = 1, TAGTYPE_VORBIS };