openrc-run: fix -Wunused-but-set-variable

This commit is contained in:
Sam James 2023-01-25 04:05:56 +00:00 committed by Mike Frysinger
parent fc4f15d6cd
commit a689fdb7be

View File

@ -645,7 +645,7 @@ svc_start_deps(void)
bool first; bool first;
RC_STRING *svc, *svc2; RC_STRING *svc, *svc2;
RC_SERVICE state; RC_SERVICE state;
int depoptions = RC_DEP_TRACE, n; int depoptions = RC_DEP_TRACE;
size_t len; size_t len;
char *p, *tmp; char *p, *tmp;
pid_t pid; pid_t pid;
@ -755,7 +755,6 @@ svc_start_deps(void)
rc_stringlist_free(use_services); rc_stringlist_free(use_services);
use_services = NULL; use_services = NULL;
len = 0; len = 0;
n = 0;
TAILQ_FOREACH(svc, tmplist, entries) { TAILQ_FOREACH(svc, tmplist, entries) {
rc_service_schedule_start(svc->value, service); rc_service_schedule_start(svc->value, service);
use_services = rc_deptree_depend(deptree, use_services = rc_deptree_depend(deptree,
@ -765,7 +764,6 @@ svc_start_deps(void)
rc_stringlist_free(use_services); rc_stringlist_free(use_services);
use_services = NULL; use_services = NULL;
len += strlen(svc->value) + 2; len += strlen(svc->value) + 2;
n++;
} }
len += 5; len += 5;