From c02c825cb8f18f0170b312ea8d4b3f4d491bff40 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sat, 21 Nov 2009 15:17:18 -0500 Subject: [PATCH] Fix an unsigned/signed warning. --- openbox/focus_cycle_popup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/focus_cycle_popup.c b/openbox/focus_cycle_popup.c index 8a87f66..a60534a 100644 --- a/openbox/focus_cycle_popup.c +++ b/openbox/focus_cycle_popup.c @@ -32,7 +32,7 @@ #include /* 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 */ -- 1.9.1