summaryrefslogtreecommitdiff
path: root/plugins/musepack
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2010-12-11 12:36:35 +0100
committerGravatar waker <wakeroid@gmail.com>2010-12-11 12:37:02 +0100
commitb2dc262dba8f7be1472ce9f55b4b058875535d14 (patch)
tree194c37c82738fc52d4f241a6ef6ee340e39b4bc1 /plugins/musepack
parentf8253523e383b700ae013b0424389faf799dbed5 (diff)
updated static/portable build scripts;
musepack c99 compile fix
Diffstat (limited to 'plugins/musepack')
-rw-r--r--plugins/musepack/mpc_decoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/musepack/mpc_decoder.c b/plugins/musepack/mpc_decoder.c
index a7732bf2..952789fd 100644
--- a/plugins/musepack/mpc_decoder.c
+++ b/plugins/musepack/mpc_decoder.c
@@ -650,11 +650,11 @@ void mpc_decoder_read_bitstream_sv8(mpc_decoder * d, mpc_bits_reader * r, mpc_bo
for ( ; k < 36; k += 2 ) {
union {
mpc_int8_t sym;
- struct { mpc_int8_t s1:4, s2:4; };
+ struct { mpc_int8_t s1:4, s2:4; } symf;
} tmp;
tmp.sym = mpc_bits_can_dec(r, Table);
- q[k] = tmp.s1;
- q[k + 1] = tmp.s2;
+ q[k] = tmp.symf.s1;
+ q[k + 1] = tmp.symf.s2;
}
} else if (Res <= 8) {
Tables[0] = & mpc_can_Q [Res - 3][0];