From d7b096fb53d37e90b9ed6e403e8ee3d1290b3dd9 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Thu, 19 Aug 2010 20:17:01 +0000 Subject: [PATCH] Fix compiler warning about signed & unsigned comparison. SVN revision: 51446 --- src/modules/ibar/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/ibar/e_mod_main.c b/src/modules/ibar/e_mod_main.c index 12301b515..7581cfc11 100644 --- a/src/modules/ibar/e_mod_main.c +++ b/src/modules/ibar/e_mod_main.c @@ -175,7 +175,7 @@ _gc_orient(E_Gadcon_Client *gcc, E_Gadcon_Orient orient) Instance *inst; inst = gcc->data; - if (orient != -1) inst->orient = orient; + if ((int)orient != -1) inst->orient = orient; switch (inst->orient) {