From 67d8fec5cf1cd873bca1d33ad5f02c63b1c8973a Mon Sep 17 00:00:00 2001 From: TheGAzed Date: Sun, 23 Jun 2024 17:48:48 +0200 Subject: [PATCH] try --- .github/workflows/cmake-single-platform.yml | 1 + program/source/structures/concrete/board.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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];