diff options
| author | Stefan Boberg <[email protected]> | 2021-10-20 16:11:13 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-10-20 16:11:13 +0200 |
| commit | e67c332cc289768885334dc46a9ff3dd99874abe (patch) | |
| tree | c2bb2132c1f6c8a896511373f8952963c3d98bc0 /zencore/iobuffer.cpp | |
| parent | Added ZEN_THIRD_PARTY_INCLUDES_START to prevent compilation issues (diff) | |
| parent | Format fix. (diff) | |
| download | zen-e67c332cc289768885334dc46a9ff3dd99874abe.tar.xz zen-e67c332cc289768885334dc46a9ff3dd99874abe.zip | |
Merge branch 'main' of https://github.com/EpicGames/zen into main
Diffstat (limited to 'zencore/iobuffer.cpp')
| -rw-r--r-- | zencore/iobuffer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/iobuffer.cpp b/zencore/iobuffer.cpp index 6cee3f60d..7077942bf 100644 --- a/zencore/iobuffer.cpp +++ b/zencore/iobuffer.cpp @@ -500,7 +500,7 @@ IoBufferBuilder::MakeFromTemporaryFile(const std::filesystem::path& FileName) Handle = DataFile.Detach(); #else - int Fd = open(FileName.native().c_str(), O_RDONLY); + int Fd = open(FileName.native().c_str(), O_RDONLY); if (Fd < 0) { return {}; |