Removed mem_dump() reference.

This commit is contained in:
christiaans 2006-11-22 09:56:39 +00:00
parent b6af5d9bda
commit a885cbf8ed

View File

@ -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;
}
}