From 7d80e81a27f1bbf7bd7dd0039771233f0e9b6779 Mon Sep 17 00:00:00 2001 From: nick black Date: Fri, 10 Apr 2020 12:58:04 -0400 Subject: [PATCH] geom: remove unused variables --- src/poc/geom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/poc/geom.c b/src/poc/geom.c index a68326d71..5d04ef840 100644 --- a/src/poc/geom.c +++ b/src/poc/geom.c @@ -17,7 +17,7 @@ int main(void){ if(nc == NULL){ return EXIT_FAILURE; } - int y, x, dimy, dimx; + int dimy, dimx; struct ncplane* n = notcurses_stdplane(nc); ncplane_dim_yx(n, &dimy, &dimx); // leave a 20% total margin on the sides