summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/mpa2wav.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/mpa2wav.c b/apps/plugins/mpa2wav.c
index 2a87801999..6c28100800 100644
--- a/apps/plugins/mpa2wav.c
+++ b/apps/plugins/mpa2wav.c
@@ -28,9 +28,9 @@
28 28
29static struct plugin_api* rb; 29static struct plugin_api* rb;
30 30
31struct mad_stream Stream; 31struct mad_stream Stream __attribute__ ((section(".idata")));
32struct mad_frame Frame; 32struct mad_frame Frame __attribute__ ((section(".idata")));
33struct mad_synth Synth; 33struct mad_synth Synth __attribute__ ((section(".idata")));
34mad_timer_t Timer; 34mad_timer_t Timer;
35struct dither d0, d1; 35struct dither d0, d1;
36 36