From a032ccafe7d414ce3e317ff78320d695f5701ac0 Mon Sep 17 00:00:00 2001 From: Axel Lin Date: Fri, 19 Aug 2016 20:54:25 +0800 Subject: [PATCH] mem: Fix trivial comment typo about using custom pools Signed-off-by: Axel Lin --- src/core/mem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/mem.c b/src/core/mem.c index a3003758..3a53fb5f 100644 --- a/src/core/mem.c +++ b/src/core/mem.c @@ -9,7 +9,7 @@ * * 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 - * 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): * * Define three pools with sizes 256, 512, and 1512 bytes