Commit 5d145c1d authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

Remove unused variables

parent ec8eb15f
......@@ -770,7 +770,6 @@ draw_line(WINDOW *w, int y, const struct pt *pt)
static void
draw_points(void)
{
int Y, X;
int line;
int n;
......@@ -789,9 +788,6 @@ draw_points(void)
assert(current >= page_start);
assert(current - page_start < l_points);
getmaxyx(w_points, Y, X);
(void)Y;
(void)X;
for (line = 0; line < l_points; line++) {
n = line + page_start;
if (n >= n_ptarray)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment