fix compiler error with some logs

This commit is contained in:
Gabor Kiss-Vamosi
2021-03-11 19:38:51 +01:00
parent 2ffa8165c1
commit ba69cb4dca
2 changed files with 2 additions and 2 deletions

View File

@@ -157,7 +157,7 @@ static void flex_update(lv_obj_t * cont)
if(cont->spec_attr == NULL) return;
const lv_flex_t * f = (const lv_flex_t *)cont->spec_attr->layout_dsc;
LV_LOG_INFO("update 0x%p container, triggered by 0x%p", cont, item);
LV_LOG_INFO("update 0x%p container", cont);
bool rtl = lv_obj_get_base_dir(cont) == LV_BIDI_DIR_RTL ? true : false;
bool row = f->dir == LV_FLEX_FLOW_ROW ? true : false;

View File

@@ -122,7 +122,7 @@ static void grid_update(lv_obj_t * cont)
if(cont->spec_attr == NULL) return;
if(cont->spec_attr->layout_dsc == NULL) return;
LV_LOG_INFO("update 0x%p container, triggered by 0x%p", cont, item);
LV_LOG_INFO("update 0x%p container", cont);
full_refresh(cont);