diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2020-09-25 10:30:20 +0100 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2020-09-25 10:30:20 +0100 |
commit | e4866ae3ffff95c2235fc853362bac35a2a65d44 (patch) | |
tree | 449fb446dcc752a027217761fd13e7f1c5a799a9 /src/bin/ethumb_client/ethumbd_client.c | |
parent | 994904098cfc0178670bf051a2169def7e4cd7ad (diff) |
fix order and simplify a bit order of _init|_shutdown functions
Summary:
in bin/
ecore_evas.c : remove useless ecore_init
eetpack.c : remove use eina_init and evas_init
eet_main.c : reorder eet_init
efl_debug.c : remove useless eina_init
efl_debugd : reorder log domain
ethumbd.c : remove eina_init
ethumbd_client.c : remove ecore_init (which was anyway misplaced)
Test Plan: compilation
Reviewers: raster
Reviewed By: raster
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D12162
Diffstat (limited to '')
-rw-r--r-- | src/bin/ethumb_client/ethumbd_client.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bin/ethumb_client/ethumbd_client.c b/src/bin/ethumb_client/ethumbd_client.c index e81fc2e9a7..d833296f8c 100644 --- a/src/bin/ethumb_client/ethumbd_client.c +++ b/src/bin/ethumb_client/ethumbd_client.c | |||
@@ -246,7 +246,6 @@ main(int argc, char *argv[]) | |||
246 | int i, ret = 0; | 246 | int i, ret = 0; |
247 | 247 | ||
248 | ethumb_client_init(); | 248 | ethumb_client_init(); |
249 | ecore_init(); | ||
250 | 249 | ||
251 | Ecore_Getopt_Value values[] = { | 250 | Ecore_Getopt_Value values[] = { |
252 | ECORE_GETOPT_VALUE_PTR_CAST(opts.geometry), | 251 | ECORE_GETOPT_VALUE_PTR_CAST(opts.geometry), |
@@ -323,7 +322,6 @@ main(int argc, char *argv[]) | |||
323 | eina_stringshare_del(opts.frame.group); | 322 | eina_stringshare_del(opts.frame.group); |
324 | eina_stringshare_del(opts.frame.swallow); | 323 | eina_stringshare_del(opts.frame.swallow); |
325 | } | 324 | } |
326 | ecore_shutdown(); | ||
327 | ethumb_client_shutdown(); | 325 | ethumb_client_shutdown(); |
328 | 326 | ||
329 | return ret; | 327 | return ret; |