eina: fix warning of unsigned int being compared to an int.

This commit is contained in:
Cedric Bail 2013-11-09 20:06:36 +09:00
parent f49377a538
commit 91025a1e04
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ static void add_string_head(const char *string_to_add)
fail_if(eina_clist_head(&string_list) != &entry_to_add->entry);
}
static void iterating_two_phase_with_add_head(int n, const char *str, int n_ent)
static void iterating_two_phase_with_add_head(unsigned int n, const char *str, int n_ent)
{
int i;
struct test_string *entries[n_ent];