diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/buildtool/file_system/file_system_manager.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildtool/file_system/file_system_manager.hpp b/src/buildtool/file_system/file_system_manager.hpp index d905f301..181cba27 100644 --- a/src/buildtool/file_system/file_system_manager.hpp +++ b/src/buildtool/file_system/file_system_manager.hpp @@ -1149,7 +1149,7 @@ class FileSystemManager { class LowLevel { static constexpr ssize_t kDefaultChunkSize = 1024 * 32; static constexpr int kWriteFlags = - O_WRONLY | O_CREAT | O_TRUNC | O_SYNC; // NOLINT + O_WRONLY | O_CREAT | O_TRUNC; // NOLINT static constexpr int kWritePerms = // 644 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH; // NOLINT |