aboutsummaryrefslogtreecommitdiffstats
path: root/test.h
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2025-03-01 12:35:26 -0500
committerSam Anthony <sam@samanthony.xyz>2025-03-01 12:35:26 -0500
commitad29f3a56e4db0c56e216cd0b4a0f1bdbcc47ff8 (patch)
tree6e99f573dd971716db285b9a2efe267143afdfd1 /test.h
parent6098a18434216a210a795b94876b983fa1a3c1ea (diff)
downloadvolute-ad29f3a56e4db0c56e216cd0b4a0f1bdbcc47ff8.zip
remove redundant printf modifiers
Diffstat (limited to 'test.h')
-rw-r--r--test.h2
1 files changed, 1 insertions, 1 deletions
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); \
} \
}