From e2234ef6432f17731397325088fb7286659fdec2 Mon Sep 17 00:00:00 2001 From: Alastair Poole Date: Fri, 15 May 2020 14:31:27 +0100 Subject: [PATCH] proc: remove unused vars --- src/bin/system/process.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/bin/system/process.c b/src/bin/system/process.c index 154c68f..3035df9 100644 --- a/src/bin/system/process.c +++ b/src/bin/system/process.c @@ -876,9 +876,7 @@ _process_list_freebsd_get(void) Eina_List *list = NULL; struct kinfo_proc *kps, *kp; struct rusage *usage; - char **args; char errbuf[_POSIX2_LINE_MAX]; - char name[1024]; int pid_count; static int pagesize = 0; @@ -897,8 +895,6 @@ _process_list_freebsd_get(void) for (int i = 0; i < pid_count; i++) { - Eina_Bool have_command = EINA_FALSE; - if (kps[i].ki_flag & P_KPROC) continue;