netstar pushed a commit to branch master. http://git.enlightenment.org/apps/evisum.git/commit/?id=67d354cc9913bf4a03338672e44c6749d9ef095a
commit 67d354cc9913bf4a03338672e44c6749d9ef095a Author: Alastair Poole <[email protected]> Date: Sat May 16 17:13:31 2020 +0100 process: remove duplicate function call. --- src/bin/system/process.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/bin/system/process.c b/src/bin/system/process.c index e71be36..e8743be 100644 --- a/src/bin/system/process.c +++ b/src/bin/system/process.c @@ -943,10 +943,7 @@ _process_list_freebsd_get(void) Proc_Info *p = _proc_thread_info(kp, EINA_FALSE); if (p) - { - _cmd_get(p, kp); - list = eina_list_append(list, p); - } + list = eina_list_append(list, p); } kvm_close(kern); --
