From ad29f3a56e4db0c56e216cd0b4a0f1bdbcc47ff8 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sat, 1 Mar 2025 12:35:26 -0500 Subject: remove redundant printf modifiers --- test.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test.h') diff --git a/test.h b/test.h index ef3e9cf..150443c 100644 --- a/test.h +++ b/test.h @@ -2,7 +2,7 @@ #define test(got, want) { \ if (got < want-EPSILON || got > want+EPSILON) { \ - fprintf(stderr, "got %lf; want %lf\n", got, want); \ + fprintf(stderr, "got %f; want %f\n", got, want); \ assert(got == want); \ } \ } -- cgit v1.2.3