diff options
| author | Rafael Ignacio Zurita <rafaelignacio.zurita@gmail.com> | 2014-01-09 11:49:00 -0300 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2014-01-09 14:56:34 -0500 |
| commit | 33caeb559ee80de7c720ac832b5071925afbaaae (patch) | |
| tree | 55de24e1f65c019be7bfe79d2b4ac06f03d87891 | |
| parent | c7a458b5ade325b9ca213ac9444fd6c956c2bd7d (diff) | |
Fix gcc warnings in screen.c
| -rw-r--r-- | openbox/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/screen.c b/openbox/screen.c index ecffa487..0198c36c 100644 --- a/openbox/screen.c +++ b/openbox/screen.c @@ -1681,7 +1681,7 @@ guint screen_find_monitor(const Rect *search) { guint i; guint mostpx_index = screen_num_monitors; - guint mostpx = 0; + glong mostpx = 0; guint closest_distance_index = screen_num_monitors; guint closest_distance = G_MAXUINT; GSList *counted = NULL; |
