chore(examples): fix unused-variable warning (#3732)

Co-authored-by: pengyiqiang <pengyiqiang@xiaomi.com>
This commit is contained in:
_VIFEXTech
2022-10-10 21:31:29 +08:00
committed by GitHub
parent c3a49327ba
commit 14c126a883
7 changed files with 9 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
static void event_cb(lv_event_t * e)
{
lv_obj_t * obj = lv_event_get_current_target(e);
LV_UNUSED(obj);
LV_LOG_USER("Button %s clicked", lv_msgbox_get_active_btn_text(obj));
}