Simplified safety check
This commit is contained in:
parent
7c4eacd1b8
commit
ebbc4ada39
6
draw.c
6
draw.c
@ -184,13 +184,9 @@ void col_size(entry_t *entry, const char *color, char *buf, int width)
|
|||||||
int mag = 0;
|
int mag = 0;
|
||||||
const char* units = "BKMGTPEZY";
|
const char* units = "BKMGTPEZY";
|
||||||
double bytes = (double)entry->info.st_size;
|
double bytes = (double)entry->info.st_size;
|
||||||
while (bytes > 1024) {
|
while (bytes > 1024 && units[mag+1]) {
|
||||||
bytes /= 1024;
|
bytes /= 1024;
|
||||||
mag++;
|
mag++;
|
||||||
if (!units[mag]) {
|
|
||||||
sprintf(buf, " ???");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
// Add 1 extra digit of precision if it would be nonzero:
|
// Add 1 extra digit of precision if it would be nonzero:
|
||||||
sprintf(buf, "%5.*f%c ", ((int)(bytes*10.0 + 0.5)%10 >= 1) ? 1 : 0, bytes, units[mag]);
|
sprintf(buf, "%5.*f%c ", ((int)(bytes*10.0 + 0.5)%10 >= 1) ? 1 : 0, bytes, units[mag]);
|
||||||
|
Loading…
Reference in New Issue
Block a user