diff options
-rw-r--r-- | libavcodec/nellymoserdec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/nellymoserdec.c b/libavcodec/nellymoserdec.c index cda8d11..2ada6fd 100644 --- a/libavcodec/nellymoserdec.c +++ b/libavcodec/nellymoserdec.c @@ -179,8 +179,8 @@ static int decode_tag(AVCodecContext * avctx, blocks = 8; break; default: if (buf_size % 64) { - av_log(avctx, AV_LOG_DEBUG, "Tag size %d.\n", buf_size); - return buf_size; + av_log(avctx, AV_LOG_DEBUG, "Tag size %d.\n", buf_size); + return buf_size; } blocks = buf_size / 64; break; |