lsmem: Fix SIZE column min-width in --all mode
This commit is contained in:
parent
b75db66f59
commit
165d1ed5fa
@ -457,11 +457,14 @@ fn create_table_rows(lsmem: &Lsmem, opts: &Options) -> Vec<TableRow> {
|
||||
let size = blk.count * lsmem.block_size;
|
||||
row.range = format!("0x{:016x}-0x{:016x}", start, start + size - 1);
|
||||
|
||||
// Size
|
||||
// Size (always at least 5 long)
|
||||
row.size = if opts.bytes {
|
||||
format!("{}", blk.count * lsmem.block_size)
|
||||
format!("{:>5}", blk.count * lsmem.block_size)
|
||||
} else {
|
||||
utils::size_to_human_string(blk.count * lsmem.block_size)
|
||||
format!(
|
||||
"{:>5}",
|
||||
utils::size_to_human_string(blk.count * lsmem.block_size)
|
||||
)
|
||||
};
|
||||
|
||||
// State
|
||||
|
Loading…
x
Reference in New Issue
Block a user