diff options
author | Martin Storsjö <martin@martin.st> | 2010-06-14 12:35:28 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-06-14 12:35:28 +0000 |
commit | f1a12c76cfa09b3c2b85c59b705780a5c7dd11a6 (patch) | |
tree | bfa0b3b5ead47cbe379a766849c229e04bfe374a | |
parent | f7a30c0baa36df7bc858ffc1bd71152b60972da1 (diff) | |
download | ffmpeg-f1a12c76cfa09b3c2b85c59b705780a5c7dd11a6.tar.gz |
Reindent
Originally committed as revision 23603 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 cda8d11975..2ada6fd501 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; |