From b11ef143ebb55dff37d70cb90a2f57da9e6b20c2 Mon Sep 17 00:00:00 2001 From: jpekkila Date: Tue, 15 Oct 2019 17:38:29 +0300 Subject: [PATCH] Moved a debug print further to reduce clutter --- src/utils/verification.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/verification.c b/src/utils/verification.c index 227b8de..dbf0db2 100644 --- a/src/utils/verification.c +++ b/src/utils/verification.c @@ -142,7 +142,6 @@ is_acceptable(const Error error) static void print_error_to_screen(const Error error) { - printf("WARNING: is_acceptable() not yet complete\n"); printf("\t%-15s... ", vtxbuf_names[error.handle]); if (is_acceptable(error)) { printf(GRN "OK! " RESET); @@ -163,5 +162,6 @@ acVerifyMesh(const AcMesh model, const AcMesh candidate) Error field_error = get_max_abs_error(i, model, candidate); print_error_to_screen(field_error); } + printf("WARNING: is_acceptable() not yet complete\n"); return true; }