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/091_getcube/getcube_tests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/091_getcube/getcube_tests.c') diff --git a/test/091_getcube/getcube_tests.c b/test/091_getcube/getcube_tests.c index 07e621e..324cbeb 100644 --- a/test/091_getcube/getcube_tests.c +++ b/test/091_getcube/getcube_tests.c @@ -1,11 +1,11 @@ #include "../test.h" -cube_t getcube(int64_t, int64_t, int64_t, int64_t); +cube_t getcube(uint64_t, uint64_t, uint64_t, uint64_t); void run(void) { char str[STRLENMAX]; oriented_cube_t cube; - int64_t ep, eo, cp, co; + uint64_t ep, eo, cp, co; fgets(str, STRLENMAX, stdin); ep = atoll(str); -- cgit v1.3