Introduction
Introduction Statistics Contact Development Disclaimer Help
Instantiate j var outside #ifdef XINEMARA directive because it is used in loop …
git clone git://git.suckless.org/dmenu
Log
Files
Refs
README
LICENSE
---
commit 84a1bc5d0d6b54eb23268e8f02a787be9ccbd919
parent f0a5b75d6a0d2a62da45e9f65d92ea4a6a2d5831
Author: Vincent Carluer <[email protected]>
Date: Thu, 4 Jan 2018 12:27:37 +0000
Instantiate j var outside #ifdef XINEMARA directive because it is used in loop …
Diffstat:
M dmenu.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
---
diff --git a/dmenu.c b/dmenu.c
@@ -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);
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.