Cast set but unused variables to void
parent
d91f588288
commit
b855ec6210
2
ui.c
2
ui.c
|
@ -281,6 +281,7 @@ void uiDraw(void) {
|
||||||
BOTTOM, 0,
|
BOTTOM, 0,
|
||||||
BOTTOM, RIGHT
|
BOTTOM, RIGHT
|
||||||
);
|
);
|
||||||
|
(void)y;
|
||||||
doupdate();
|
doupdate();
|
||||||
|
|
||||||
if (!to_status_line) return;
|
if (!to_status_line) return;
|
||||||
|
@ -578,6 +579,7 @@ static void resize(void) {
|
||||||
wresize(window->pad, BufferCap, COLS);
|
wresize(window->pad, BufferCap, COLS);
|
||||||
reflow(window);
|
reflow(window);
|
||||||
}
|
}
|
||||||
|
(void)height;
|
||||||
statusUpdate();
|
statusUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue