summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-01-27 20:01:49 +0100
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-01-27 20:01:49 +0100
commit2cca855821c37748e43826767e28bdce170ba486 (patch)
treef6450a47b5680f55dbc77e622e4dcbcd6b148202
parent7361e03ab3297dd6ecb9602d0ce7837fd0c5203f (diff)
compile fix
-rw-r--r--plugins/wavpack/wavpack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/wavpack/wavpack.c b/plugins/wavpack/wavpack.c
index d2e10687..cb55d490 100644
--- a/plugins/wavpack/wavpack.c
+++ b/plugins/wavpack/wavpack.c
@@ -154,7 +154,7 @@ wv_read_int16 (char *bytes, int size) {
int32_t *p = buffer;
n *= nchannels;
while (n > 0) {
- *((int16_t *)bytes) = (int16_t)((*p) >> (_info->bps-16));
+ *((int16_t *)bytes) = (int16_t)((*p) >> (plugin.info.bps-16));
bytes += sizeof (int16_t);
p++;
n--;