diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-09-26 16:21:27 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-09-26 17:58:07 +0900 |
commit | 5cea60d1574ba689735c488bada4004b72f2d5e4 (patch) | |
tree | bdcdcbb9154920a6906eae19831944852f08aca4 /src | |
parent | 5258a6d46f5c16423135514cab759ce1a4bfdc6b (diff) |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/elementary/elm_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_main.c b/src/lib/elementary/elm_main.c index f433d57030..196f5b5bbc 100644 --- a/src/lib/elementary/elm_main.c +++ b/src/lib/elementary/elm_main.c | |||
@@ -883,7 +883,7 @@ elm_quicklaunch_shutdown(void) | |||
883 | _elm_emotion_shutdown(); | 883 | _elm_emotion_shutdown(); |
884 | 884 | ||
885 | ecore_file_shutdown(); | 885 | ecore_file_shutdown(); |
886 | eio_init(); | 886 | eio_shutdown(); |
887 | ecore_shutdown(); | 887 | ecore_shutdown(); |
888 | eet_shutdown(); | 888 | eet_shutdown(); |
889 | 889 | ||