diff options
Diffstat (limited to 'lib/rbcodec/codecs/flac.c')
-rw-r--r-- | lib/rbcodec/codecs/flac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/codecs/flac.c b/lib/rbcodec/codecs/flac.c index eab6e7c2bc..753115dc30 100644 --- a/lib/rbcodec/codecs/flac.c +++ b/lib/rbcodec/codecs/flac.c @@ -498,7 +498,7 @@ enum codec_status codec_run(void) frame=0; buf = ci->request_buffer(&bytesleft, MAX_FRAMESIZE); while (bytesleft) { - enum codec_command_action action = ci->get_command(¶m); + long action = ci->get_command(¶m); if (action == CODEC_ACTION_HALT) break; |