mem: Fix trivial comment typo about using custom pools

Signed-off-by: Axel Lin <axel.lin@ingics.com>
This commit is contained in:
Axel Lin 2016-08-19 20:54:25 +08:00 committed by Dirk Ziegelmeier
parent 4f4d16260f
commit a032ccafe7

View File

@ -9,7 +9,7 @@
* *
* To let mem_malloc() use pools (prevents fragmentation and is much faster than * To let mem_malloc() use pools (prevents fragmentation and is much faster than
* a heap but might waste some memory), define MEM_USE_POOLS to 1, define * a heap but might waste some memory), define MEM_USE_POOLS to 1, define
* MEM_USE_CUSTOM_POOLS to 1 and create a file "lwippools.h" that includes a list * MEMP_USE_CUSTOM_POOLS to 1 and create a file "lwippools.h" that includes a list
* of pools like this (more pools can be added between _START and _END): * of pools like this (more pools can be added between _START and _END):
* *
* Define three pools with sizes 256, 512, and 1512 bytes * Define three pools with sizes 256, 512, and 1512 bytes