From ea0387796a349c91032fbcb10f50c6ad8607b0f6 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Tue, 29 Jul 2025 12:12:43 +0200 Subject: All coordinates unsigned --- test/071_coord_eo/coord_eo_tests.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/071_coord_eo') diff --git a/test/071_coord_eo/coord_eo_tests.c b/test/071_coord_eo/coord_eo_tests.c index 360720e..be64ed2 100644 --- a/test/071_coord_eo/coord_eo_tests.c +++ b/test/071_coord_eo/coord_eo_tests.c @@ -1,16 +1,16 @@ #include "../test.h" -int64_t coord_eo(cube_t); +uint64_t coord_eo(cube_t); void run(void) { char str[STRLENMAX]; oriented_cube_t cube; - int64_t result; + uint64_t result; fgets(str, STRLENMAX, stdin); cube = readcube(str); result = coord_eo(cube.cube); - printf("%" PRId64 "\n", result); + printf("%" PRIu64 "\n", result); } -- cgit v1.3