fix(lv_log.h): remove the duplicated semicolon from LV_LOG_xxx (#2544)

and fix the caller who forget to add semicolon at the line end

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2021-09-09 21:34:36 +08:00
committed by GitHub
parent 2cd5a90b7d
commit 9fc0c3cf98
40 changed files with 71 additions and 71 deletions

View File

@@ -290,7 +290,7 @@ void lv_obj_update_layout(const lv_obj_t * obj)
{
static bool mutex = false;
if(mutex) {
LV_LOG_TRACE("Already running, returning")
LV_LOG_TRACE("Already running, returning");
return;
}
mutex = true;
@@ -299,10 +299,10 @@ void lv_obj_update_layout(const lv_obj_t * obj)
/*Repeat until there where layout invalidations*/
while(scr->scr_layout_inv) {
LV_LOG_INFO("Layout update begin")
LV_LOG_INFO("Layout update begin");
scr->scr_layout_inv = 0;
layout_update_core(scr);
LV_LOG_TRACE("Layout update end")
LV_LOG_TRACE("Layout update end");
}
mutex = false;