Instantiate j var outside #ifdef XINEMARA directive because it is used in loop outside directive

This commit is contained in:
Vincent Carluer 2018-01-04 12:27:37 +00:00 committed by Hiltjo Posthuma
parent f0a5b75d6a
commit 84a1bc5d0d
1 changed files with 2 additions and 3 deletions

View File

@ -541,7 +541,7 @@ run(void)
static void
setup(void)
{
int x, y, i = 0;
int x, y, i, j = 0;
unsigned int du;
XSetWindowAttributes swa;
XIM xim;
@ -551,9 +551,8 @@ setup(void)
#ifdef XINERAMA
XineramaScreenInfo *info;
Window pw;
int a, j, di, n, area = 0;
int a, di, n, area = 0;
#endif
/* init appearance */
for (j = 0; j < SchemeLast; j++)
scheme[j] = drw_scm_create(drw, colors[j], 2);