Patch bass ackwards behavior of hr flag.

This commit is contained in:
Matt Kraai 2001-03-28 20:10:25 +00:00
parent 7cd0cfeab6
commit d98e574d41
3 changed files with 15 additions and 12 deletions

View File

@ -201,7 +201,7 @@ struct sysinfo {
};
extern int sysinfo (struct sysinfo* info);
const char *make_human_readable_str(unsigned long val, unsigned long hr);
const char *make_human_readable_str(unsigned long val, unsigned long not_hr);
enum {
KILOBYTE = 1024,
MEGABYTE = (KILOBYTE*1024),

View File

@ -31,20 +31,23 @@
static char buffer[10];
static const char *suffixes[] = { "", "k", "M", "G", "T" };
const char *make_human_readable_str(unsigned long val, unsigned long hr)
const char *make_human_readable_str(unsigned long val, unsigned long not_hr)
{
int suffix, base;
for (suffix = 0, base = 1; suffix < 5; suffix++, base <<= 10) {
if (val < (base << 10)) {
if (suffix && val < 10 * base)
sprintf(buffer, "%lu.%lu%s", val / base,
(val % base) * 10 / base, suffixes[suffix]);
else
sprintf(buffer, "%lu%s", val / base, suffixes[suffix]);
break;
if (not_hr)
sprintf(buffer, "%lu", val);
else
for (suffix = 0, base = 1; suffix < 5; suffix++, base <<= 10) {
if (val < (base << 10)) {
if (suffix && val < 10 * base)
sprintf(buffer, "%lu.%lu%s", val / base,
(val % base) * 10 / base, suffixes[suffix]);
else
sprintf(buffer, "%lu%s", val / base, suffixes[suffix]);
break;
}
}
}
return buffer;
}

View File

@ -201,7 +201,7 @@ struct sysinfo {
};
extern int sysinfo (struct sysinfo* info);
const char *make_human_readable_str(unsigned long val, unsigned long hr);
const char *make_human_readable_str(unsigned long val, unsigned long not_hr);
enum {
KILOBYTE = 1024,
MEGABYTE = (KILOBYTE*1024),