diff options
author | Lars Næsbye Christensen <lars@naesbye.dk> | 2024-02-09 02:11:50 +0100 |
---|---|---|
committer | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-02-12 23:17:22 +0200 |
commit | 3a12af88b779b667ace2dc594f0e8ec48b83b58a (patch) | |
tree | 50b2cca3de8965d485b50ee67b840b3adf5ac3d9 /indra/llplugin/llpluginsharedmemory.cpp | |
parent | aa4516046a492615547be9cc7ed19b46e2d04ddd (diff) |
llplugin: BOOL (int) to real bool
Diffstat (limited to 'indra/llplugin/llpluginsharedmemory.cpp')
-rw-r--r-- | indra/llplugin/llpluginsharedmemory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llplugin/llpluginsharedmemory.cpp b/indra/llplugin/llpluginsharedmemory.cpp index 63ff5085c6..3fc9cbd973 100644 --- a/indra/llplugin/llpluginsharedmemory.cpp +++ b/indra/llplugin/llpluginsharedmemory.cpp @@ -478,7 +478,7 @@ bool LLPluginSharedMemory::attach(const std::string &name, size_t size) mImpl->mMapFile = OpenFileMappingA( FILE_MAP_ALL_ACCESS, // read/write access - FALSE, // do not inherit the name + false, // do not inherit the name mName.c_str()); // name of mapping object if(mImpl->mMapFile == NULL) |