reindented after yesterday's commit

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21704 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nicodvb 2006-12-20 20:30:08 +00:00
parent c544612bb2
commit e4876ebe46
1 changed files with 2 additions and 2 deletions

View File

@ -134,8 +134,8 @@ static int open_f (stream_t *stream, int mode, void *opts, int* file_format) {
stream->flags = mode;
len = 0;
if(mode == STREAM_READ) {
len = smbc_lseek(fd,0,SEEK_END);
smbc_lseek (fd, 0, SEEK_SET);
len = smbc_lseek(fd,0,SEEK_END);
smbc_lseek (fd, 0, SEEK_SET);
}
if(len > 0 || mode == STREAM_WRITE) {
stream->flags |= STREAM_SEEK;