From 58f604d2e38515819e962f27b34dda67686f1661 Mon Sep 17 00:00:00 2001 From: Jochen Sprickerhof Date: Thu, 4 Jan 2018 19:02:00 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20warning:=20=E2=80=98i=E2=80=99=20may=20be?= =?UTF-8?q?=20used=20uninitialized=20in=20this=20function?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This was a regression of 84a1bc5. --- dmenu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmenu.c b/dmenu.c index 3c261c0..2e66327 100644 --- a/dmenu.c +++ b/dmenu.c @@ -541,7 +541,7 @@ run(void) static void setup(void) { - int x, y, i, j = 0; + int x, y, i = 0, j = 0; unsigned int du; XSetWindowAttributes swa; XIM xim; -- 2.15.1