sys/test_utils/result_output: fix turo_float() precision value
`print_float()` only allows values from 0-7.
This commit is contained in:
parent
abbf798e8e
commit
4bee52a693
@ -49,7 +49,7 @@ void turo_u64(turo_t *ctx, uint64_t val)
|
|||||||
void turo_float(turo_t *ctx, float val)
|
void turo_float(turo_t *ctx, float val)
|
||||||
{
|
{
|
||||||
(void)ctx;
|
(void)ctx;
|
||||||
print_float(val, 8);
|
print_float(val, 7);
|
||||||
print_str(" ");
|
print_str(" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user