[thin_metadata_size] use floor rather than truncl
This commit is contained in:
parent
271ff67f91
commit
7134a58134
@ -324,7 +324,7 @@ static const unsigned mappings_per_block(void)
|
|||||||
static void print_precision(struct global *g, double r, unsigned idx)
|
static void print_precision(struct global *g, double r, unsigned idx)
|
||||||
{
|
{
|
||||||
bool full = g->options.n[NUMERIC] == NO_NUMBER;
|
bool full = g->options.n[NUMERIC] == NO_NUMBER;
|
||||||
double rtrunc = truncl(r);
|
double rtrunc = floor(r);
|
||||||
|
|
||||||
if (full)
|
if (full)
|
||||||
printf("%s - ", g->prg);
|
printf("%s - ", g->prg);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user