examples: remove unused variables and label

Signed-off-by: Cedric BAIL <cedric.bail@samsung.com>
This commit is contained in:
Vincent Torri 2014-01-09 08:37:41 +01:00 committed by Cedric BAIL
parent 6871f93e2f
commit e86a89aa52
2 changed files with 0 additions and 6 deletions

View File

@ -259,7 +259,6 @@ _my_cache_account_free_cb(const Eina_Hash *hash EINA_UNUSED,
static void
_my_cache_free(My_Cache *my_cache)
{
My_Account *acc;
eina_hash_foreach(my_cache->accounts, _my_cache_account_free_cb, NULL);
eina_hash_free(my_cache->accounts);
free(my_cache);
@ -367,7 +366,6 @@ main(int argc,
char *argv[])
{
My_Cache *my_cache;
const Eina_List *l_acc;
Eina_Iterator *it;
My_Account *acc;
int ret = 0;
@ -469,8 +467,6 @@ main(int argc,
it = eina_hash_iterator_data_new(my_cache->accounts);
EINA_ITERATOR_FOREACH(it, acc)
{
const My_Post *post;
printf("\t > %-#8x '%.20s' stats: m=%u, p=%u\n",
acc->id, acc->name ? acc->name : "",
eina_list_count(acc->messages),

View File

@ -57,7 +57,6 @@ _anim_cb(void *data)
{
App_Data *ad = data;
Evas_Map *m;
const Evas_Map *old_map;
Evas_Object *o;
int r, g, b, a;
int win_w, win_h, img_w, img_h;
@ -323,7 +322,6 @@ main(void)
error:
fprintf(stderr, "you got to have at least one evas engine built and linked"
" up to ecore-evas for this example to run properly.\n");
panic:
ecore_evas_shutdown();
return -1;
}