From 0c1c5014b0a413df9591f37a987afbc5cd626c32 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..c89067e 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; unsigned int du; XSetWindowAttributes swa; XIM xim; -- 2.15.1