lv_mem: remove debug printf
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user