Skip to content

Commit b7df005

Browse files
committed
hid_app: fixed uninit var warning
1 parent ef795fd commit b7df005

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

applications/system/hid_app/views/hid_mouse_clicker.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ static void hid_mouse_clicker_draw_callback(Canvas* canvas, void* context) {
7777
btn_label = "Right";
7878
break;
7979
default:
80-
furi_assert(false);
80+
furi_crash();
8181
}
8282

8383
elements_multiline_text_aligned(canvas, 89, 57, AlignCenter, AlignBottom, btn_label);

0 commit comments

Comments
 (0)