diff options
| author | Ian Zimmerman <itz@buug.org> | 2013-08-17 15:13:05 -0700 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2013-09-01 15:09:03 -0400 |
| commit | 9750e5cea8d8cdab2b8b988a8c5d6392b0dbeae8 (patch) | |
| tree | 605417f2f155b7f318986c5d0eb9046ddbe62887 /openbox/screen.c | |
| parent | 0afb5b28c63651c1e598bbd4d88c60ac0b478567 (diff) | |
Fix gcc warnings
Diffstat (limited to 'openbox/screen.c')
| -rw-r--r-- | openbox/screen.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openbox/screen.c b/openbox/screen.c index 33acb4a1..9295194e 100644 --- a/openbox/screen.c +++ b/openbox/screen.c @@ -1327,8 +1327,9 @@ typedef struct { static void get_xinerama_screens(Rect **xin_areas, guint *nxin) { guint i; - gint n, l, r, t, b; + gint l, r, t, b; #ifdef XINERAMA + gint n; XineramaScreenInfo *info; #endif |
