diff options
author | Vincent Fourmond <vincent.fourmond@9online.fr> | 2007-08-17 15:12:30 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2007-08-17 15:12:30 +0000 |
commit | de79849eace7b16a6e92c6820d3146ff06997017 (patch) | |
tree | ea6ad0ac0556ad72cf1f7407ed7d605a4fa3f0a5 | |
parent | afd98005db28f158eb9ebc92e1825523155e73dd (diff) | |
download | ffmpeg-de79849eace7b16a6e92c6820d3146ff06997017.tar.gz |
Indent for next commit
Patch by Vincent Fourmond [vincent dot fourmond at 9online dot fr]
Originally committed as revision 10133 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/file.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/file.c b/libavformat/file.c index c03db02dcc..48e7803ba1 100644 --- a/libavformat/file.c +++ b/libavformat/file.c @@ -91,11 +91,11 @@ static int pipe_open(URLContext *h, const char *filename, int flags) { int fd; - if (flags & URL_WRONLY) { - fd = 1; - } else { - fd = 0; - } + if (flags & URL_WRONLY) { + fd = 1; + } else { + fd = 0; + } #ifdef O_BINARY setmode(fd, O_BINARY); #endif |