Fix invalid %llf format by dropping useless ll prefix

This commit is contained in:
Brian Behlendorf 2008-12-08 10:18:11 -08:00
parent 8de21aeeef
commit fd39fc67d0
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ nvlist_print_with_indent(FILE *fp, nvlist_t *nvl, int depth)
case DATA_TYPE_DOUBLE: {
double val;
(void) nvpair_value_double(nvp, &val);
(void) fprintf(fp, " 0x%llf", val);
(void) fprintf(fp, " %f", val);
break;
}
case DATA_TYPE_STRING: {