summaryrefslogtreecommitdiffstats
path: root/zfs
diff options
context:
space:
mode:
authorZach Dykstra <dykstra.zachary@gmail.com>2020-08-28 00:02:35 -0500
committerZach Dykstra <dykstra.zachary@gmail.com>2020-08-28 00:02:35 -0500
commitf97fbd668a7606453d29dba9410f98bdd6f85edd (patch)
tree5caf349520b06d118d7ecc0b39313ca9f282d136 /zfs
parentb5e6952cc6edaf4d54478f5fb23712c85e148912 (diff)
Normalize ZFS ARC caption
Other captions take the form of LABEL:<space>. This moves the uncompressed ZFS ARC caption into the same style.
Diffstat (limited to 'zfs')
-rw-r--r--zfs/ZfsArcMeter.c3
1 files changed, 1 insertions, 2 deletions
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: "
};

© 2014-2024 Faster IT GmbH | imprint | privacy policy