summaryrefslogtreecommitdiff
path: root/src/common/mem_arena.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/mem_arena.cpp')
-rw-r--r--src/common/mem_arena.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/mem_arena.cpp b/src/common/mem_arena.cpp
index a456beb28..40d9c03a2 100644
--- a/src/common/mem_arena.cpp
+++ b/src/common/mem_arena.cpp
@@ -139,7 +139,7 @@ void MemArena::GrabLowMemSpace(size_t size)
139 // a bit more. 139 // a bit more.
140 for (int i = 0; i < 10000; i++) 140 for (int i = 0; i < 10000; i++)
141 { 141 {
142 std::string file_name = StringFromFormat("/citramem.%d", i); 142 std::string file_name = Common::StringFromFormat("/citramem.%d", i);
143 fd = shm_open(file_name.c_str(), O_RDWR | O_CREAT | O_EXCL, 0600); 143 fd = shm_open(file_name.c_str(), O_RDWR | O_CREAT | O_EXCL, 0600);
144 if (fd != -1) 144 if (fd != -1)
145 { 145 {