summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryn M. Reeves <bmr@redhat.com>2016-07-06 09:37:59 +0100
committerBryn M. Reeves <bmr@redhat.com>2016-07-06 09:37:59 +0100
commit21b946dfb75c893827ce5caafd16cb09be4fbeeb (patch)
tree5e287303c58c61d2a576804aabc775968e7d4da4
parent95ef0cdb461dfb7b7e6ac8e2484564fe0b5ec0ed (diff)
downloadlvm2-21b946dfb75c893827ce5caafd16cb09be4fbeeb.tar.gz
dmstats: fix 'obj_type' field width
The header for 'obj_type' was changed from 'Object Type' to 'ObjType': update the minimum field width to match this change.
-rw-r--r--tools/dmsetup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/dmsetup.c b/tools/dmsetup.c
index ed03c2bc8..4d9bb0709 100644
--- a/tools/dmsetup.c
+++ b/tools/dmsetup.c
@@ -4286,7 +4286,7 @@ FIELD_F(STATS_META, STR, "#Bins", 9, dm_stats_hist_bins, "hist_bins", "The numbe
FIELD_F(STATS_META, STR, "Histogram Bounds", 16, dm_stats_hist_bounds, "hist_bounds", "Latency histogram bin boundaries.")
FIELD_F(STATS_META, STR, "Histogram Ranges", 16, dm_stats_hist_ranges, "hist_ranges", "Latency histogram bin ranges.")
FIELD_F(STATS_META, STR, "Name", 16, dm_stats_name, "stats_name", "Stats name of current object.")
-FIELD_F(STATS_META, STR, "ObjType", 11, dm_stats_object_type, "obj_type", "Type of stats object being reported.")
+FIELD_F(STATS_META, STR, "ObjType", 7, dm_stats_object_type, "obj_type", "Type of stats object being reported.")
{0, 0, 0, 0, "", "", NULL, NULL},
/* *INDENT-ON* */
};