From f73c98abd44b9b38e095b402a8b72d614b40052b Mon Sep 17 00:00:00 2001 From: Ross Williams Date: Tue, 9 Feb 2021 16:59:03 +0000 Subject: Forgot to correctly color ZFS ARC ratio `ZFS_RATIO` in `CRT.c` was unused, because I forgot to colorize the ARC ratio in the Compressed ARC meter. The intent was to improve readability of the meter by highlighting the most relevant value, the ratio, in a brighter color, for most themes. This change effects that intent. --- zfs/ZfsCompressedArcMeter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zfs') diff --git a/zfs/ZfsCompressedArcMeter.c b/zfs/ZfsCompressedArcMeter.c index 92d82e99..4e5c89e6 100644 --- a/zfs/ZfsCompressedArcMeter.c +++ b/zfs/ZfsCompressedArcMeter.c @@ -54,7 +54,7 @@ static void ZfsCompressedArcMeter_display(const Object* cast, RichString* out) { RichString_appendAscii(out, CRT_colors[METER_VALUE], buffer); RichString_appendAscii(out, CRT_colors[METER_TEXT], " Compressed, "); ZfsCompressedArcMeter_printRatioString(this, buffer, sizeof(buffer)); - RichString_appendAscii(out, CRT_colors[METER_VALUE], buffer); + RichString_appendAscii(out, CRT_colors[ZFS_RATIO], buffer); RichString_appendAscii(out, CRT_colors[METER_TEXT], " Ratio"); } else { RichString_writeAscii(out, CRT_colors[METER_TEXT], " "); -- cgit v1.2.3