E: Fix compiler warning (comparison between signed and unsigned).

SVN revision: 63050
This commit is contained in:
Christopher Michael 2011-08-31 21:59:03 +00:00
parent 2af8bd79d7
commit ccd3dfc0e8
1 changed files with 1 additions and 1 deletions

View File

@ -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;