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:
Diffstat (limited to 'intern/guardedalloc')
-rw-r--r--intern/guardedalloc/intern/mallocn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/guardedalloc/intern/mallocn.c b/intern/guardedalloc/intern/mallocn.c
index 97ac3008072..2a6a0df0ff4 100644
--- a/intern/guardedalloc/intern/mallocn.c
+++ b/intern/guardedalloc/intern/mallocn.c
@@ -319,7 +319,7 @@ void *MEM_mallocN(size_t len, const char *str)
#ifdef DEBUG_MEMCOUNTER
if(_mallocn_count==DEBUG_MEMCOUNTER_ERROR_VAL)
- memcount_raise("MEM_mallocN");
+ memcount_raise(__func__);
memh->_count= _mallocn_count++;
#endif
return (++memh);
@@ -344,7 +344,7 @@ void *MEM_callocN(size_t len, const char *str)
mem_unlock_thread();
#ifdef DEBUG_MEMCOUNTER
if(_mallocn_count==DEBUG_MEMCOUNTER_ERROR_VAL)
- memcount_raise("MEM_callocN");
+ memcount_raise(__func__);
memh->_count= _mallocn_count++;
#endif
return (++memh);
@@ -374,7 +374,7 @@ void *MEM_mapallocN(size_t len, const char *str)
mem_unlock_thread();
#ifdef DEBUG_MEMCOUNTER
if(_mallocn_count==DEBUG_MEMCOUNTER_ERROR_VAL)
- memcount_raise("MEM_mapallocN");
+ memcount_raise(__func__);
memh->_count= _mallocn_count++;
#endif
return (++memh);