From a885cbf8edbf010518204d8361b28966418355ff Mon Sep 17 00:00:00 2001 From: christiaans Date: Wed, 22 Nov 2006 09:56:39 +0000 Subject: [PATCH] Removed mem_dump() reference. --- src/core/mem.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/core/mem.c b/src/core/mem.c index 455eb57c..feaf6fab 100644 --- a/src/core/mem.c +++ b/src/core/mem.c @@ -388,7 +388,6 @@ mem_malloc(mem_size_t size) (mem_ptr_t)mem + SIZEOF_STRUCT_MEM + size <= (mem_ptr_t)ram_end); LWIP_ASSERT("mem_malloc: allocated memory properly aligned.", (unsigned long)((u8_t *)mem + SIZEOF_STRUCT_MEM) % MEM_ALIGNMENT == 0); - mem_dump("mem_malloc"); return (u8_t *)mem + SIZEOF_STRUCT_MEM; } }