ethumb: Fixing eina_init to eina_shutdown.

Summary:
In the end we should call eina_shutdown, but by mistake eina_init is being called. So have corrected that.

@fix

Signed-off-by: Srivardhan Hebbar <sri.hebbar@samsung.com>

Reviewers: devilhorns

Subscribers: cedric

Differential Revision: https://phab.enlightenment.org/D1751
This commit is contained in:
Srivardhan Hebbar 2014-12-09 09:24:38 -05:00 committed by Chris Michael
parent 25db7de813
commit 05006e6463
1 changed files with 1 additions and 1 deletions

View File

@ -1872,7 +1872,7 @@ main(int argc, char *argv[])
if (_pfx) eina_prefix_free(_pfx);
ethumb_shutdown();
eina_init();
eina_shutdown();
ecore_shutdown();
return exit_value;
}