1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #17036 from kaspar030/turo_text_float_fix

sys/test_utils/result_output: fix turo_float() precision value
This commit is contained in:
Kevin "Tristate Tom" Weiss 2021-10-22 19:07:09 +02:00 committed by GitHub
commit 325d3ea743
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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(" ");
}