summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/test_codec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/test_codec.c b/apps/plugins/test_codec.c
index 78f8dd61a8..01efcf69e5 100644
--- a/apps/plugins/test_codec.c
+++ b/apps/plugins/test_codec.c
@@ -119,7 +119,7 @@ static uint32_t crc32;
119 119
120static volatile unsigned int elapsed; 120static volatile unsigned int elapsed;
121static volatile bool codec_playing; 121static volatile bool codec_playing;
122static volatile enum codec_command_action codec_action; 122static volatile long codec_action;
123static volatile long endtick; 123static volatile long endtick;
124static volatile long rebuffertick; 124static volatile long rebuffertick;
125struct wavinfo_t wavinfo; 125struct wavinfo_t wavinfo;
@@ -474,7 +474,7 @@ static void seek_complete(void)
474} 474}
475 475
476/* Codec calls this to know what it should do next. */ 476/* Codec calls this to know what it should do next. */
477static enum codec_command_action get_command(intptr_t *param) 477static long get_command(intptr_t *param)
478{ 478{
479 rb->yield(); 479 rb->yield();
480 return codec_action; 480 return codec_action;