diff options
Diffstat (limited to 'test/072_coord_co')
| -rw-r--r-- | test/072_coord_co/coord_co_tests.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/072_coord_co/coord_co_tests.c b/test/072_coord_co/coord_co_tests.c index b1de223..440ad2e 100644 --- a/test/072_coord_co/coord_co_tests.c +++ b/test/072_coord_co/coord_co_tests.c | |||
| @@ -4,13 +4,13 @@ int64_t coord_co(cube_t); | |||
| 4 | 4 | ||
| 5 | void run(void) { | 5 | void run(void) { |
| 6 | char str[STRLENMAX]; | 6 | char str[STRLENMAX]; |
| 7 | cube_t cube; | 7 | oriented_cube_t cube; |
| 8 | int64_t result; | 8 | int64_t result; |
| 9 | 9 | ||
| 10 | fgets(str, STRLENMAX, stdin); | 10 | fgets(str, STRLENMAX, stdin); |
| 11 | cube = readcube(str); | 11 | cube = readcube(str); |
| 12 | 12 | ||
| 13 | result = coord_co(cube); | 13 | result = coord_co(cube.cube); |
| 14 | 14 | ||
| 15 | printf("%" PRId64 "\n", result); | 15 | printf("%" PRId64 "\n", result); |
| 16 | } | 16 | } |
