Skip to content

Commit

Permalink
Merge pull request #14 from zdykstra/master
Browse files Browse the repository at this point in the history
Normalize ZFS ARC caption
  • Loading branch information
natoscott authored Aug 28, 2020
2 parents b992d52 + f97fbd6 commit 2d14269
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions zfs/ZfsArcMeter.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -100,5 +99,5 @@ MeterClass ZfsArcMeter_class = {
.attributes = ZfsArcMeter_attributes,
.name = "ZFSARC",
.uiName = "ZFS ARC",
.caption = "ARC"
.caption = "ARC: "
};

0 comments on commit 2d14269

Please sign in to comment.