summaryrefslogtreecommitdiff
path: root/openbox
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2009-11-21 15:17:18 -0500
committerDana Jansens <danakj@orodu.net>2009-11-21 15:17:18 -0500
commitc02c825cb8f18f0170b312ea8d4b3f4d491bff40 (patch)
tree8176265b31bf13eba25469a553c1817f563dc302 /openbox
parent44df758d6b7a0f268118275cfc44b885f83f784c (diff)
Fix an unsigned/signed warning.
Diffstat (limited to 'openbox')
-rw-r--r--openbox/focus_cycle_popup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/focus_cycle_popup.c b/openbox/focus_cycle_popup.c
index 8a87f667..a60534ad 100644
--- a/openbox/focus_cycle_popup.c
+++ b/openbox/focus_cycle_popup.c
@@ -32,7 +32,7 @@
#include <glib.h>
/* Size of the icons, which can appear inside or outside of a hilite box */
-#define ICON_SIZE config_theme_window_list_icon_size
+#define ICON_SIZE (gint)config_theme_window_list_icon_size
/* Size of the hilite box around a window's icon */
#define HILITE_SIZE (ICON_SIZE + 2*HILITE_OFFSET)
/* Width of the outer ring around the hilite box */