diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2007-05-11 19:07:40 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2007-05-11 19:07:40 +0000 |
commit | 5f097703829b5dbb0acaf48568102c4997e128bc (patch) | |
tree | d3197269ca2af878a83723794fcadf32423abf48 | |
parent | 9d9de37d819b9d330a9aaaa05e42b77e3b4ca668 (diff) | |
download | ffmpeg-5f097703829b5dbb0acaf48568102c4997e128bc.tar.gz |
cosmetics: fix indentation
Originally committed as revision 8998 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/aviobuf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 2cc247b62c..0c178636ee 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -280,8 +280,8 @@ static void fill_buffer(ByteIOContext *s) /* do not modify buffer if EOF reached so that a seek back can be done without rereading data */ s->eof_reached = 1; - if(len<0) - s->error= len; + if(len<0) + s->error= len; } else { s->pos += len; s->buf_ptr = s->buffer; |