diff options
| author | Stefan Boberg <[email protected]> | 2022-02-02 10:48:51 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2022-02-02 10:49:05 +0100 |
| commit | 362fa4336e71dae5472e6a9f9ba06ff253ac5607 (patch) | |
| tree | 63a9b9c56de686594428867a3cc0bc8dc78132c4 /zencore/filesystem.cpp | |
| parent | Revised TODO (diff) | |
| download | zen-362fa4336e71dae5472e6a9f9ba06ff253ac5607.tar.xz zen-362fa4336e71dae5472e6a9f9ba06ff253ac5607.zip | |
clang-format
Diffstat (limited to 'zencore/filesystem.cpp')
| -rw-r--r-- | zencore/filesystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/filesystem.cpp b/zencore/filesystem.cpp index ee49aa474..ab606301c 100644 --- a/zencore/filesystem.cpp +++ b/zencore/filesystem.cpp @@ -703,7 +703,7 @@ ScanFile(std::filesystem::path Path, const uint64_t ChunkSize, std::function<voi ProcessFunc(ReadBuffer.data(), dwBytesRead); } #else - int Fd = open(Path.c_str(), O_RDONLY | O_CLOEXEC); + int Fd = open(Path.c_str(), O_RDONLY | O_CLOEXEC); if (Fd < 0) { return false; |