summaryrefslogtreecommitdiff
path: root/libavcodec/xan.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2014-08-23 19:22:13 +0000
committerPaul B Mahol <onemda@gmail.com>2014-08-24 10:54:11 +0000
commitb73b36bfa5ed6440e689ab5a1f8199c6186a6c79 (patch)
tree9fb54f1cbe5f742aa1263ed52ea7746c93bbf3ce /libavcodec/xan.c
parent3e892b2bcdb67f9372a5400baba1513e2fcbf3b5 (diff)
avcodec/xan: fix style issue
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavcodec/xan.c')
-rw-r--r--libavcodec/xan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/xan.c b/libavcodec/xan.c
index 7489113cf7..bb28916e39 100644
--- a/libavcodec/xan.c
+++ b/libavcodec/xan.c
@@ -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;
}