From 90e241ce2ab7c029298067893ff9e2202efc52f1 Mon Sep 17 00:00:00 2001 From: Avra Mitra Date: Thu, 2 Sep 2021 15:46:20 +0530 Subject: [PATCH] chore(btnmatrix) removed unnecessary semicolon (#2520) Removed an unnecessary semicolon at line 97 ( `lv_btnmatrix_t * btnm = (lv_btnmatrix_t *)obj;` ) --- src/widgets/lv_btnmatrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/lv_btnmatrix.c b/src/widgets/lv_btnmatrix.c index c4491a555..baa79b841 100644 --- a/src/widgets/lv_btnmatrix.c +++ b/src/widgets/lv_btnmatrix.c @@ -94,7 +94,7 @@ void lv_btnmatrix_set_map(lv_obj_t * obj, const char * map[]) LV_ASSERT_OBJ(obj, MY_CLASS); if(map == NULL) return; - lv_btnmatrix_t * btnm = (lv_btnmatrix_t *)obj;; + lv_btnmatrix_t * btnm = (lv_btnmatrix_t *)obj; /*Analyze the map and create the required number of buttons*/ allocate_btn_areas_and_controls(obj, map);