1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-01 21:45:45 +01:00

WINGs: Value stored to 'aw' is never read

Signed-off-by: Amadeusz Sławiński <amade@asmblr.net>
This commit is contained in:
Amadeusz Sławiński
2014-05-18 13:32:46 +02:00
committed by Carlos R. Mafra
parent 0db65843ff
commit 9384e3273f

View File

@@ -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;
}