summaryrefslogtreecommitdiff
path: root/src/combined/nsf_decoder.c
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-16 15:34:23 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-06-16 15:34:23 +0200
commit5935b6fbe5c4d83ea35a1464b3a1c32e00b23304 (patch)
treee4d1ef387a60a17eb797b2b837dc446a009fa19a /src/combined/nsf_decoder.c
parentea58c6bc3db42aad918da8c90ce05997909e7eb8 (diff)
downloadxine-lib-5935b6fbe5c4d83ea35a1464b3a1c32e00b23304.tar.gz
xine-lib-5935b6fbe5c4d83ea35a1464b3a1c32e00b23304.tar.bz2
Rename the BE/LE/ME macros with a _X_ prefix, so they don't clash with Solaris definitions (1.2 branch commit).
Diffstat (limited to 'src/combined/nsf_decoder.c')
-rw-r--r--src/combined/nsf_decoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/combined/nsf_decoder.c b/src/combined/nsf_decoder.c
index 01884f267..b1d8e706c 100644
--- a/src/combined/nsf_decoder.c
+++ b/src/combined/nsf_decoder.c
@@ -93,7 +93,7 @@ static void nsf_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) {
this->song_number = buf->content[4];
/* allocate a buffer for the file */
- this->nsf_size = BE_32(&buf->content[0]);
+ this->nsf_size = _X_BE_32(&buf->content[0]);
this->nsf_file = xine_xmalloc(this->nsf_size);
this->nsf_index = 0;