diff options
| author | Ivan Kanakarakis <ivan.kanak@gmail.com> | 2012-09-19 20:33:28 +0300 |
|---|---|---|
| committer | Ivan Kanakarakis <ivan.kanak@gmail.com> | 2012-09-20 13:03:11 +0300 |
| commit | 344d3d072b3d3a0ca4fa47359d82ac35666f92fa (patch) | |
| tree | cea5f992a196d1f456c930bdc17ec01f1df1dee4 /monsterwm.c | |
| parent | 69f34fc03d44daa5feeae5b853192a9526d3f7ee (diff) | |
no need for static var initialization
Diffstat (limited to 'monsterwm.c')
| -rw-r--r-- | monsterwm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/monsterwm.c b/monsterwm.c index 26dd19a..c22ba9a 100644 --- a/monsterwm.c +++ b/monsterwm.c @@ -173,8 +173,8 @@ static int xerrorstart(Display *dis, XErrorEvent *ee); * currdeskidx - which desktop is currently active */ static Bool running = True; -static int wh, ww, currdeskidx = 0; -static unsigned int numlockmask = 0, win_unfocus, win_focus; +static int wh, ww, currdeskidx; +static unsigned int numlockmask, win_unfocus, win_focus; static Display *dis; static Window root; static Atom wmatoms[WM_COUNT], netatoms[NET_COUNT]; |
