Merge branch 'gcc-branch' into refs/top-bases/zfs-branch

This commit is contained in:
Brian Behlendorf 2009-07-31 14:02:48 -07:00
commit cf44f97b96
1 changed files with 1 additions and 1 deletions

View File

@ -551,7 +551,7 @@ zfs_nicenum(uint64_t num, char *buf, size_t buflen)
*/ */
for (j = 2; j >= 0; j--) { for (j = 2; j >= 0; j--) {
if (snprintf(buf, buflen, "%.*f%c", j, if (snprintf(buf, buflen, "%.*f%c", j,
(double)num / (1ULL << 10 * j), u) <= 5) (double)num / (1ULL << 10 * i), u) <= 5)
break; break;
} }
} }