lv_mem: remove debug printf

This commit is contained in:
Gabor Kiss-Vamosi
2018-07-25 12:24:47 +02:00
parent e6516c3a90
commit 405acfcbba

View File

@@ -137,8 +137,8 @@ void * lv_mem_alloc(uint32_t size)
do { do {
//Get the next entry //Get the next entry
e = ent_get_next(e); e = ent_get_next(e);
printf("e size: %d\n", e->header.d_size);
//If there is next entry then try to allocate there /*If there is next entry then try to allocate there*/
if(e != NULL) { if(e != NULL) {
alloc = ent_alloc(e, size); alloc = ent_alloc(e, size);
} }