From 4bee52a693587655153c0a71ab2279180c0adfaa Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Fri, 22 Oct 2021 12:49:16 +0200 Subject: [PATCH] sys/test_utils/result_output: fix turo_float() precision value `print_float()` only allows values from 0-7. --- sys/test_utils/result_output/txt/result_output_txt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/test_utils/result_output/txt/result_output_txt.c b/sys/test_utils/result_output/txt/result_output_txt.c index ea4cddbed2..2bac84ff30 100644 --- a/sys/test_utils/result_output/txt/result_output_txt.c +++ b/sys/test_utils/result_output/txt/result_output_txt.c @@ -49,7 +49,7 @@ void turo_u64(turo_t *ctx, uint64_t val) void turo_float(turo_t *ctx, float val) { (void)ctx; - print_float(val, 8); + print_float(val, 7); print_str(" "); }