fix compiler error with some logs
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user