diff options
-rw-r--r-- | lib/common/Guards.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common/Guards.h b/lib/common/Guards.h index 17d73b3f..b1bca0fa 100644 --- a/lib/common/Guards.h +++ b/lib/common/Guards.h @@ -24,7 +24,7 @@ #include "MemLeakFindOn.h" -template <int flags = O_RDONLY, int mode = (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)> +template <int flags = O_RDONLY | O_BINARY, int mode = (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH)> class FileHandleGuard { public: |