From e1be777adc7dc3076bb49edfd527d3f501f3d874 Mon Sep 17 00:00:00 2001 From: heyuanjie <943313837@qq.com> Date: Mon, 11 Jun 2018 14:28:13 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E9=99=A4=E8=AD=A6=E5=91=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/lwp/lwp_mem.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/lwp/lwp_mem.c b/components/lwp/lwp_mem.c index 95c95441b8..ca390e4f96 100644 --- a/components/lwp/lwp_mem.c +++ b/components/lwp/lwp_mem.c @@ -22,7 +22,6 @@ * 2018-03-24 Tanek the first version */ -#include #include #include @@ -77,7 +76,7 @@ static void *rt_lwp_malloc_page(struct rt_lwp *lwp, rt_size_t npages) dbg_log(DBG_LOG, "lwp alloc page: %d\n", npages); - sprintf(name, "lwp%02x", lwp->heap_cnt); + rt_sprintf(name, "lwp%02x", lwp->heap_cnt); rt_lwp_memheap_init(lwp_heap, name, chunk, npages * LWP_MEM_PAGE_SIZE); rt_list_insert_before(&lwp->hlist, &lwp_heap->mlist);