From 9384e3273f929567f488d8cb080187e6f029a12f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amadeusz=20S=C5=82awi=C5=84ski?= Date: Sun, 18 May 2014 13:32:46 +0200 Subject: [PATCH] WINGs: Value stored to 'aw' is never read MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Amadeusz Sławiński --- WINGs/wpanel.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/WINGs/wpanel.c b/WINGs/wpanel.c index 1c1d04f5..6e2f9f47 100644 --- a/WINGs/wpanel.c +++ b/WINGs/wpanel.c @@ -545,13 +545,11 @@ WMGenericPanel *WMCreateGenericPanel(WMScreen * scrPtr, WMWindow * owner, w = WMAX(dw, aw); if ((w + 10) * 2 < 400) { - aw = w; dw = w; } else { int t; t = 400 - 40 - aw - dw; - aw += t / 2; dw += t / 2; }