mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-14 04:54:37 +03:00
Drop unused attributes of actually used function parameters
These parameters were once unused, but not anymore.
This commit is contained in:
2
Meter.c
2
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]);
|
||||
|
Reference in New Issue
Block a user