Skip to content

Commit 6f5511a

Browse files
committed
core: Fix variable initialize
1 parent 02a15fa commit 6f5511a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/action_macro.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void action_macro_play(const macro_t *macro_p)
3434
macro_t macro = END;
3535
uint8_t interval = 0;
3636

37-
uint8_t mod_storage;
37+
uint8_t mod_storage = 0;
3838

3939
if (!macro_p) return;
4040
while (true) {

0 commit comments

Comments
 (0)