Commit 76353b42 authored by Ramiro Polla's avatar Ramiro Polla

Remove underscores before fcntl flags

Originally committed as revision 9599 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4b54c6d0
...@@ -1345,7 +1345,7 @@ int av_tempfile(char *prefix, char **filename) { ...@@ -1345,7 +1345,7 @@ int av_tempfile(char *prefix, char **filename) {
return -1; return -1;
} }
#if !defined(HAVE_MKSTEMP) #if !defined(HAVE_MKSTEMP)
fd = open(*filename, _O_RDWR | _O_BINARY | _O_CREAT, 0444); fd = open(*filename, O_RDWR | O_BINARY | O_CREAT, 0444);
#else #else
snprintf(*filename, len, "/tmp/%sXXXXXX", prefix); snprintf(*filename, len, "/tmp/%sXXXXXX", prefix);
fd = mkstemp(*filename); fd = mkstemp(*filename);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment