Fix ecore_con example file to call shutdown functions.

Found by Chris Michael.
This commit is contained in:
Guillaume Friloux 2014-01-15 20:42:50 +01:00
parent 2830507661
commit 4ec00f8edc
1 changed files with 3 additions and 3 deletions

View File

@ -120,9 +120,9 @@ main(int argc, const char *argv[])
/* start client */
ecore_main_loop_begin();
ecore_con_init();
ecore_init();
eina_init();
ecore_con_shutdown();
ecore_shutdown();
eina_shutdown();
return 0;
}