Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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