From ccd3dfc0e81a21599691bf874fdbb670c461a053 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Wed, 31 Aug 2011 21:59:03 +0000 Subject: [PATCH] E: Fix compiler warning (comparison between signed and unsigned). SVN revision: 63050 --- src/bin/e_container.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_container.c b/src/bin/e_container.c index c2372ab0a..f5c8dab04 100644 --- a/src/bin/e_container.c +++ b/src/bin/e_container.c @@ -845,7 +845,7 @@ _e_container_border_list_jump(E_Border_List *list, int dir) E_Border *bd; if ((list->pos < 0) || - (list->pos >= eina_array_count_get(&(list->client_array)))) + (list->pos >= (int)eina_array_count_get(&(list->client_array)))) return NULL; bd = eina_array_data_get(&(list->client_array), list->pos); list->pos += dir;