1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

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
This commit is contained in:
Vincent Fourmond 2007-08-17 15:12:30 +00:00 committed by Ramiro Polla
parent afd98005db
commit de79849eac

View File

@ -91,11 +91,11 @@ static int pipe_open(URLContext *h, const char *filename, int flags)
{ {
int fd; int fd;
if (flags & URL_WRONLY) { if (flags & URL_WRONLY) {
fd = 1; fd = 1;
} else { } else {
fd = 0; fd = 0;
} }
#ifdef O_BINARY #ifdef O_BINARY
setmode(fd, O_BINARY); setmode(fd, O_BINARY);
#endif #endif