Skip to content

Commit

Permalink
another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGAzed committed Jun 23, 2024
1 parent 712ecb8 commit 830aea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion program/source/structures/concrete/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ksize_t _empty_cell_count(KGrid from);

Kakuro init_kakuro(FILE * kakuro_file) {
assert(kakuro_file && "KAKURO FILE POINTER IS NULL");
ksize_t c;
ksize_t c = 0;
do {
assert(fread(&c, sizeof(ksize_t), 1, kakuro_file));
printf ("%02x ", c);
Expand Down

0 comments on commit 830aea5

Please sign in to comment.