cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=be3afd8f4b778e0b0be9be43265674fe9a1ba847
commit be3afd8f4b778e0b0be9be43265674fe9a1ba847 Author: Cedric Bail <cedric.b...@samsung.com> Date: Mon Nov 4 12:47:12 2013 +0900 eina: update Eina_Cow test to latest API change. --- src/tests/eina/eina_test_cow.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tests/eina/eina_test_cow.c b/src/tests/eina/eina_test_cow.c index 7967e0e..a4e1422 100644 --- a/src/tests/eina/eina_test_cow.c +++ b/src/tests/eina/eina_test_cow.c @@ -81,7 +81,7 @@ START_TEST(eina_cow_bad) (void) _eina_test_log; #endif - eina_cow_free(cow, cur); + eina_cow_free(cow, (const Eina_Cow_Data**) &cur); eina_cow_del(cow); } @@ -137,8 +137,8 @@ START_TEST(eina_cow) fail_if(eina_cow_gc(cow) == EINA_FALSE); fail_if(cur != prev); - eina_cow_free(cow, (const Eina_Cow_Data*) cur); - eina_cow_free(cow, (const Eina_Cow_Data*) prev); + eina_cow_free(cow, (const Eina_Cow_Data**) &cur); + eina_cow_free(cow, (const Eina_Cow_Data**) &prev); eina_cow_del(cow); } --