aboutsummaryrefslogtreecommitdiffstats
path: root/test.h
diff options
context:
space:
mode:
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); \
} \
}