From b502edc80ca24a4a83465a6487e22c8fa6c46f12 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Sat, 29 Dec 2018 13:11:30 +0100 Subject: [PATCH] examples: remove setted but not used variable --- src/examples/eio/efl_io_manager_ls.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/examples/eio/efl_io_manager_ls.c b/src/examples/eio/efl_io_manager_ls.c index fd79032803..636883d91c 100644 --- a/src/examples/eio/efl_io_manager_ls.c +++ b/src/examples/eio/efl_io_manager_ls.c @@ -60,7 +60,6 @@ void list_files(void *data) int main(int argc, char const *argv[]) { const char *path; - Ecore_Job *job; eio_init(); ecore_init(); @@ -70,7 +69,7 @@ int main(int argc, char const *argv[]) if (argc > 1) path = argv[1]; - job = ecore_job_add(&list_files, path); + ecore_job_add(&list_files, path); ecore_main_loop_begin();