Eio model test: initialise pointer (clang warning).

This is probably not an issue because the function should always
return a value, but initialising this variable silence clang's
warning and is not harmful anyway.
This commit is contained in:
Tom Hacohen 2015-10-09 12:23:41 +01:00
parent fd61ff69b3
commit c4cbdca127
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ START_TEST(eio_model_test_test_file)
Eo *filemodel = NULL;
const Eina_Value *value_prop;
Efl_Model_Load_Status status;
Eina_Array *properties_list;
Eina_Array *properties_list = NULL;
Eina_Array_Iterator iterator;
char *str;
unsigned int i;