From f97fbd668a7606453d29dba9410f98bdd6f85edd Mon Sep 17 00:00:00 2001 From: Zach Dykstra Date: Fri, 28 Aug 2020 00:02:35 -0500 Subject: Normalize ZFS ARC caption Other captions take the form of LABEL:. This moves the uncompressed ZFS ARC caption into the same style. --- zfs/ZfsArcMeter.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'zfs') diff --git a/zfs/ZfsArcMeter.c b/zfs/ZfsArcMeter.c index 8042555c..8bd0f5d2 100644 --- a/zfs/ZfsArcMeter.c +++ b/zfs/ZfsArcMeter.c @@ -60,7 +60,6 @@ static void ZfsArcMeter_display(Object* cast, RichString* out) { Meter* this = (Meter*)cast; if (this->values[5] > 0) { - RichString_write(out, CRT_colors[METER_TEXT], ":"); Meter_humanUnit(buffer, this->total, 50); RichString_append(out, CRT_colors[METER_VALUE], buffer); Meter_humanUnit(buffer, this->values[5], 50); @@ -100,5 +99,5 @@ MeterClass ZfsArcMeter_class = { .attributes = ZfsArcMeter_attributes, .name = "ZFSARC", .uiName = "ZFS ARC", - .caption = "ARC" + .caption = "ARC: " }; -- cgit v1.2.3