Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGAzed committed Jun 23, 2024
1 parent e6fd67a commit 67d8fec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/cmake-single-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,5 @@ jobs:
run: |
pwd
xxd ../test/puzzles/easy/1.kkr
ls -l ../test/puzzles/easy/
ctest -C ${{env.BUILD_TYPE}} --rerun-failed --output-on-failure
2 changes: 1 addition & 1 deletion program/source/structures/concrete/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ KGrid _init_grid(FILE * kakuro_file) {

KGrid g = { 0 };
assert((GRID_DIMENTIONS == fread(g.size, sizeof(ksize_t), GRID_DIMENTIONS, kakuro_file)) && "READ FAILED");
printf("%02hhd %02hhd", g.size[ROW], g.size[COLUMN]);
printf("%02hhd %02hhd\n", g.size[ROW], g.size[COLUMN]);
fflush(stdout);
g.count = g.size[ROW] * g.size[COLUMN];

Expand Down

0 comments on commit 67d8fec

Please sign in to comment.