From 7cceed133781168df10f656bdca2a29067ed4fb2 Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Thu, 12 Apr 2018 20:56:46 +0900 Subject: [PATCH] e thumb - be consistent and use safe run for restarting thumbnailer fix inconsistency in using ecore_exe_run and the e_util wrapper... @fix --- src/bin/e_thumb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_thumb.c b/src/bin/e_thumb.c index 108599167..dd65a7cc1 100644 --- a/src/bin/e_thumb.c +++ b/src/bin/e_thumb.c @@ -516,7 +516,7 @@ _e_thumb_cb_exe_event_del(void *data EINA_UNUSED, int type EINA_UNUSED, void *ev snprintf(buf, sizeof(buf), "%s/enlightenment/utils/enlightenment_thumb --nice=%d", e_prefix_lib_get(), e_config->thumb_nice); - exe_thumb = ecore_exe_run(buf, NULL); + exe_thumb = e_util_exe_safe_run(buf, NULL); _thumbnailers_exe = eina_list_append(_thumbnailers_exe, exe_thumb); } }