summaryrefslogtreecommitdiff
path: root/libavformat/aviobuf.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2007-01-01 21:49:50 +0000
committerMichael Niedermayer <michaelni@gmx.at>2007-01-01 21:49:50 +0000
commit1ae2c5f2e7f3b74827f705811c87b22fd59bd0af (patch)
tree4d495d386cfdc3766dc730255fec1f1a8fbf5d3e /libavformat/aviobuf.c
parent8e287af090d0ef65043f3b30573ead754375ff8f (diff)
fix indention of previous commit
Originally committed as revision 7396 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r--libavformat/aviobuf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index 450b4cf11d..4a595e2e43 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -172,8 +172,8 @@ offset_t url_fsize(ByteIOContext *s)
return -EPIPE;
size = s->seek(s->opaque, 0, AVSEEK_SIZE);
if(size<0){
- size = s->seek(s->opaque, -1, SEEK_END) + 1;
- s->seek(s->opaque, s->pos, SEEK_SET);
+ size = s->seek(s->opaque, -1, SEEK_END) + 1;
+ s->seek(s->opaque, s->pos, SEEK_SET);
}
return size;
}