Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--intern/guardedalloc/cpp/mallocn.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/guardedalloc/cpp/mallocn.cpp b/intern/guardedalloc/cpp/mallocn.cpp
index bf51409e84f..b4d19a62bdc 100644
--- a/intern/guardedalloc/cpp/mallocn.cpp
+++ b/intern/guardedalloc/cpp/mallocn.cpp
@@ -26,7 +26,7 @@
void* operator new (size_t size)
{
- return MEM_mallocN(size, "c++/anonymous");
+ return MEM_mallocN(size, "C++/anonymous");
}
/* not default but can be used when needing to set a string */