From df29e91a697fbc89dea9c38282f3283e2fee7cc5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 6 Apr 2012 04:46:47 +0000 Subject: code cleanup: header cleanup, remove commented workaround for mingw since its no longer needed. --- intern/guardedalloc/intern/mallocn.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'intern/guardedalloc') 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); -- cgit v1.2.3