[thin_metadata_size] use floor rather than truncl

This commit is contained in:
Joe Thornber 2015-07-30 11:45:13 +01:00
parent 271ff67f91
commit 7134a58134

View File

@ -324,7 +324,7 @@ static const unsigned mappings_per_block(void)
static void print_precision(struct global *g, double r, unsigned idx)
{
bool full = g->options.n[NUMERIC] == NO_NUMBER;
double rtrunc = truncl(r);
double rtrunc = floor(r);
if (full)
printf("%s - ", g->prg);