summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_mod.c
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-16 15:11:56 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-16 15:11:56 +0200
commitf86215baf77d5b928a047d83ea19ea442f2a83f9 (patch)
treef663dc788902b722657e745ce9144a5116c82022 /src/demuxers/demux_mod.c
parentca74f1ccdf190bdd0beff7dfc7722a11b43b649d (diff)
downloadxine-lib-f86215baf77d5b928a047d83ea19ea442f2a83f9.tar.gz
xine-lib-f86215baf77d5b928a047d83ea19ea442f2a83f9.tar.bz2
Rename the BE/LE/ME macros with a _X_ prefix, so they don't clash with Solaris definitions.
Diffstat (limited to 'src/demuxers/demux_mod.c')
-rw-r--r--src/demuxers/demux_mod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demuxers/demux_mod.c b/src/demuxers/demux_mod.c
index 37e066b13..f1b3cdd37 100644
--- a/src/demuxers/demux_mod.c
+++ b/src/demuxers/demux_mod.c
@@ -109,7 +109,7 @@ static int probe_mod_file(demux_mod_t *this) {
return 0;
/* Magic numbers taken from GNU file's magic description */
- switch( ABE_32(header.values + (1080/sizeof(uint32_t))) ) {
+ switch( _X_ABE_32(header.values + (1080/sizeof(uint32_t))) ) {
case FOURCC_32('M', '.', 'K', '.'): /* 4-channel Protracker module sound data */
case FOURCC_32('M', '!', 'K', '!'): /* 4-channel Protracker module sound data */
case FOURCC_32('F', 'L', 'T', '4'): /* 4-channel Startracker module sound data */