From: Karel Zak Date: Wed, 9 Nov 2016 08:58:14 +0000 (+0100) Subject: lsmem: align STATE to the right X-Git-Tag: v2.30-rc1~417 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4c0e1eaf34fe604118afcd792291419e1d4ff661;p=thirdparty%2Futil-linux.git lsmem: align STATE to the right Signed-off-by: Karel Zak --- diff --git a/sys-utils/lsmem.c b/sys-utils/lsmem.c index 2210339a3b..3599e470da 100644 --- a/sys-utils/lsmem.c +++ b/sys-utils/lsmem.c @@ -99,7 +99,7 @@ struct coldesc { static struct coldesc coldescs[] = { [COL_RANGE] = { "RANGE", 0, 0, N_("start and end address of the memory range")}, [COL_SIZE] = { "SIZE", 5, SCOLS_FL_RIGHT, N_("size of the memory range")}, - [COL_STATE] = { "STATE", 0, 0, N_("online status of the memory range")}, + [COL_STATE] = { "STATE", 0, SCOLS_FL_RIGHT, N_("online status of the memory range")}, [COL_REMOVABLE] = { "REMOVABLE", 0, SCOLS_FL_RIGHT, N_("memory is removable")}, [COL_BLOCK] = { "BLOCK", 0, SCOLS_FL_RIGHT, N_("memory block number or blocks range")}, [COL_NODE] = { "NODE", 0, SCOLS_FL_RIGHT, N_("numa node of memory")},