diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 95bcb94..f8b5ff9 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -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 diff --git a/program/source/structures/concrete/board.c b/program/source/structures/concrete/board.c index d5e2eaf..5c81a72 100644 --- a/program/source/structures/concrete/board.c +++ b/program/source/structures/concrete/board.c @@ -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];