summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2017-09-26 16:21:27 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2017-09-29 10:28:41 +0900
commit9b6a6098dc9ea3a35ba6f2b2cf80670df2931f06 (patch)
treea737b60e017552645bc3d86108cf86380a644ced
parentb9ad278737c0988cab76db4914e246a17783cbbf (diff)
downloadefl-9b6a6098dc9ea3a35ba6f2b2cf80670df2931f06.tar.gz
elm: Fix elm_shutdown
ecore could not shut down properly in an elm_init()/elm_shutdown() cycle, with 7 remaining references, all because of a typo. This should help @cedric as well
-rw-r--r--src/lib/elementary/elm_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_main.c b/src/lib/elementary/elm_main.c
index cc38bfe3b1..d7efe136b5 100644
--- a/src/lib/elementary/elm_main.c
+++ b/src/lib/elementary/elm_main.c
@@ -883,7 +883,7 @@ elm_quicklaunch_shutdown(void)
_elm_emotion_shutdown();
ecore_file_shutdown();
- eio_init();
+ eio_shutdown();
ecore_shutdown();
eet_shutdown();