summaryrefslogtreecommitdiff
path: root/src/libxineadec/nsf.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/libxineadec/nsf.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/libxineadec/nsf.c')
-rw-r--r--src/libxineadec/nsf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libxineadec/nsf.c b/src/libxineadec/nsf.c
index e646ca873..08a4f1814 100644
--- a/src/libxineadec/nsf.c
+++ b/src/libxineadec/nsf.c
@@ -91,7 +91,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;