Fix an unsigned/signed warning.
authorDana Jansens <danakj@orodu.net>
Sat, 21 Nov 2009 20:17:18 +0000 (15:17 -0500)
committerDana Jansens <danakj@orodu.net>
Sat, 21 Nov 2009 20:17:18 +0000 (15:17 -0500)
openbox/focus_cycle_popup.c

index 8a87f66..a60534a 100644 (file)
@@ -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 */