Skip to content

Commit

Permalink
fixed error
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGAzed committed Jun 23, 2024
1 parent 67bed39 commit 712ecb8
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 @@ -18,7 +18,7 @@ Kakuro init_kakuro(FILE * kakuro_file) {
assert(kakuro_file && "KAKURO FILE POINTER IS NULL");
ksize_t c;
do {
fread(&c, sizeof(ksize_t), 1, kakuro_file);
assert(fread(&c, sizeof(ksize_t), 1, kakuro_file));
printf ("%02x ", c);
} while (!feof(kakuro_file));
fflush(stdout);
Expand Down

0 comments on commit 712ecb8

Please sign in to comment.