diff options
-rw-r--r-- | lib/Support/raw_ostream.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/raw_ostream.cpp b/lib/Support/raw_ostream.cpp index 2e15111..2181cce 100644 --- a/lib/Support/raw_ostream.cpp +++ b/lib/Support/raw_ostream.cpp @@ -343,7 +343,7 @@ raw_fd_ostream::raw_fd_ostream(const char *Filename, std::string &ErrorInfo, int OpenFlags = O_WRONLY|O_CREAT; #ifdef O_BINARY - if (Binary) + if (Flags & F_Binary) OpenFlags |= O_BINARY; #endif |