summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Torri <vincent dot torri at gmail dot com>2015-12-18 16:45:38 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2015-12-18 16:48:34 +0900
commit1921055644c08a3ba549754301193c5225359265 (patch)
tree348b9ab2d0c3055f242a042bde6e8a431f4a2604
parente20978054a2f690797813b9283bc88ef8827faff (diff)
downloadefl-1921055644c08a3ba549754301193c5225359265.tar.gz
Eina test: fix warning
Reviewers: jpeg Subscribers: cedric Differential Revision: https://phab.enlightenment.org/D3465
-rw-r--r--src/tests/eina/eina_test_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/eina/eina_test_str.c b/src/tests/eina/eina_test_str.c
index dcef1dc764..b0f98d1fe4 100644
--- a/src/tests/eina/eina_test_str.c
+++ b/src/tests/eina/eina_test_str.c
@@ -405,7 +405,7 @@ START_TEST(str_base64_encode_decode)
fail_if(memcmp(decoded, tests[i].decoded_str, tests[i].len));
fprintf(stderr, "len = %d, tests[%d].len = %d\n", len, i, tests[i].len);
- fail_if(len != tests[i].len);
+ fail_if(len != (int)tests[i].len);
free(encoded);
free(decoded);