diff options
author | archshift <admin@archshift.com> | 2014-09-07 11:50:43 -0700 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-09-08 15:43:22 -0700 |
commit | 5472fd4d9b19011a36604a9c7f9c66f3ebe84e3f (patch) | |
tree | b55a6013b561cbb1986a04f2154fe18c0774e891 /src/common/mem_arena.cpp | |
parent | 4ed24a06191a0dbf68bd72ad0fcc8d467b37f580 (diff) |
Added string_util to common, small changes in loader.cpp
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 b76ac92d3..d4dd933bf 100644 --- a/src/common/mem_arena.cpp +++ b/src/common/mem_arena.cpp @@ -143,7 +143,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) { |