summaryrefslogtreecommitdiff
path: root/libavformat/file.c
diff options
context:
space:
mode:
authorVincent Fourmond <vincent.fourmond@9online.fr>2007-08-17 15:12:30 +0000
committerRamiro Polla <ramiro.polla@gmail.com>2007-08-17 15:12:30 +0000
commitde79849eace7b16a6e92c6820d3146ff06997017 (patch)
treeea6ad0ac0556ad72cf1f7407ed7d605a4fa3f0a5 /libavformat/file.c
parentafd98005db28f158eb9ebc92e1825523155e73dd (diff)
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
Diffstat (limited to 'libavformat/file.c')
-rw-r--r--libavformat/file.c10
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