From 49b9c4a516f72e03d53277075f4580e2df8f0e63 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Mon, 27 May 2024 12:04:53 +0200 Subject: Some type fixes and some cleanup --- test/075_set_eo/set_eo_tests.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'test/075_set_eo') diff --git a/test/075_set_eo/set_eo_tests.c b/test/075_set_eo/set_eo_tests.c index 08c8ae8..cd4868c 100644 --- a/test/075_set_eo/set_eo_tests.c +++ b/test/075_set_eo/set_eo_tests.c @@ -22,9 +22,11 @@ int main(void) { printf("Error setting EO\n"); } else if (!isconsistent(cube)) { fprintf(stderr, "edges: "); - for (int i = 0; i < 12; i++) fprintf(stderr, "%d ", cube.edge[i]); + for (int i = 0; i < 12; i++) + fprintf(stderr, "%d ", cube.edge[i]); fprintf(stderr, "\n"); - for (int i = 0; i < 8; i++) fprintf(stderr, "%d ", cube.corner[i]); + for (int i = 0; i < 8; i++) + fprintf(stderr, "%d ", cube.corner[i]); fprintf(stderr, "\n"); printf("Setting EO resulted in inconsistent cube\n"); } else { -- cgit v1.3