Skip to content

Commit d12a42a

Browse files
committed
Fix missing variable declaration
1 parent 66b9985 commit d12a42a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main/gridinit_cmd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ command_status(int lvl, int argc, char **args)
417417
break;
418418
}
419419

420-
count_misses = 0, count_broken = 0, count_down = 0;
420+
int count_misses = 0, count_broken = 0, count_down = 0;
421421
struct keyword_set_s *kw;
422422
kw = flag_color ? &KEYWORDS_COLOR : & KEYWORDS_NORMAL;
423423

0 commit comments

Comments
 (0)