diff --git a/Meter.c b/Meter.c index c964c158..6aa9f08e 100644 --- a/Meter.c +++ b/Meter.c @@ -153,7 +153,7 @@ ListItem* Meter_toListItem(const Meter* this, bool moving) { /* ---------- TextMeterMode ---------- */ -static void TextMeterMode_draw(Meter* this, int x, int y, ATTR_UNUSED int w) { +static void TextMeterMode_draw(Meter* this, int x, int y, int w) { attrset(CRT_colors[METER_TEXT]); mvaddnstr(y, x, this->caption, w - 1); attrset(CRT_colors[RESET_COLOR]); diff --git a/linux/SELinuxMeter.c b/linux/SELinuxMeter.c index 617e035f..3f79e462 100644 --- a/linux/SELinuxMeter.c +++ b/linux/SELinuxMeter.c @@ -69,7 +69,7 @@ static bool isSelinuxEnforcing(void) { return !!enforce; } -static void SELinuxMeter_updateValues(ATTR_UNUSED Meter* this) { +static void SELinuxMeter_updateValues(Meter* this) { enabled = isSelinuxEnabled(); enforcing = isSelinuxEnforcing();