Amendment to r28508 (Make Blender malloc be 64 bit ready)

- one function missed in header causes compile problems (intern/guardedalloc/intern/mallocn.c:352: error: conflicting types for ‘MEM_mapallocN’)
This commit is contained in:
Nathan Letwory
2010-04-29 19:41:12 +00:00
parent cbc2a71128
commit d2f5a60ca2

View File

@@ -105,7 +105,7 @@ extern "C" {
/** Same as callocN, clears memory and uses mmap (disk cached) if supported.
Can be free'd with MEM_freeN as usual.
* */
void *MEM_mapallocN(unsigned int len, const char * str);
void *MEM_mapallocN(size_t len, const char * str);
/** Print a list of the names and sizes of all allocated memory
* blocks. as a python dict for easy investigation */