avcodec/xan: fix style issue

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2014-08-23 19:22:13 +00:00
parent 3e892b2bcd
commit b73b36bfa5
1 changed files with 1 additions and 1 deletions

View File

@ -556,7 +556,7 @@ static int xan_decode_frame(AVCodecContext *avctx,
int i;
tag = bytestream2_get_le32(&ctx);
size = bytestream2_get_be32(&ctx);
if(size < 0) {
if (size < 0) {
av_log(avctx, AV_LOG_ERROR, "Invalid tag size %d\n", size);
return AVERROR_INVALIDDATA;
}