diff options
Diffstat (limited to 'src/common/mem_arena.cpp')
-rw-r--r-- | src/common/mem_arena.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mem_arena.cpp b/src/common/mem_arena.cpp index a456beb283..40d9c03a26 100644 --- a/src/common/mem_arena.cpp +++ b/src/common/mem_arena.cpp @@ -139,7 +139,7 @@ void MemArena::GrabLowMemSpace(size_t size) // a bit more. for (int i = 0; i < 10000; i++) { - std::string file_name = StringFromFormat("/citramem.%d", i); + std::string file_name = Common::StringFromFormat("/citramem.%d", i); fd = shm_open(file_name.c_str(), O_RDWR | O_CREAT | O_EXCL, 0600); if (fd != -1) { |