Evas example: fix warning

Summary:

Test Plan:

Reviewers: cedric

Subscribers:
This commit is contained in:
Vincent Torri 2015-12-12 11:26:36 +01:00 committed by Jean-Philippe Andre
parent fcba96384f
commit 2b20e3e21b
1 changed files with 1 additions and 1 deletions

View File

@ -720,7 +720,7 @@ START_TEST(eina_test_file_statat)
ret = eina_file_statat(eina_iterator_container_get(it), info, &st);
fprintf(stderr, "ret=%d\n", ret);
fail_if(ret != 0);
fail_if(st.size != template_size);
fail_if(st.size != (unsigned int)template_size);
}
unlink(test_file1_path);