summaryrefslogtreecommitdiffstats
path: root/src/core/dbus-unit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/dbus-unit.c')
-rw-r--r--src/core/dbus-unit.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/core/dbus-unit.c b/src/core/dbus-unit.c
index e799771c22..d38c0f0582 100644
--- a/src/core/dbus-unit.c
+++ b/src/core/dbus-unit.c
@@ -103,7 +103,6 @@ static int property_get_names(
sd_bus_error *error) {
Unit *u = userdata;
- Iterator i;
const char *t;
int r;
@@ -119,7 +118,7 @@ static int property_get_names(
if (r < 0)
return r;
- SET_FOREACH(t, u->aliases, i) {
+ SET_FOREACH(t, u->aliases) {
r = sd_bus_message_append(reply, "s", t);
if (r < 0)
return r;
@@ -157,7 +156,6 @@ static int property_get_dependencies(
sd_bus_error *error) {
Hashmap **h = userdata;
- Iterator j;
Unit *u;
void *v;
int r;
@@ -170,7 +168,7 @@ static int property_get_dependencies(
if (r < 0)
return r;
- HASHMAP_FOREACH_KEY(v, u, *h, j) {
+ HASHMAP_FOREACH_KEY(v, u, *h) {
r = sd_bus_message_append(reply, "s", u->id);
if (r < 0)
return r;
@@ -190,7 +188,6 @@ static int property_get_requires_mounts_for(
Hashmap **h = userdata;
const char *p;
- Iterator j;
void *v;
int r;
@@ -202,7 +199,7 @@ static int property_get_requires_mounts_for(
if (r < 0)
return r;
- HASHMAP_FOREACH_KEY(v, p, *h, j) {
+ HASHMAP_FOREACH_KEY(v, p, *h) {
r = sd_bus_message_append(reply, "s", p);
if (r < 0)
return r;
@@ -1729,7 +1726,6 @@ int bus_unit_queue_job(
_cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
_cleanup_free_ char *job_path = NULL, *unit_path = NULL;
_cleanup_set_free_ Set *affected = NULL;
- Iterator i;
Job *j, *a;
int r;
@@ -1808,7 +1804,7 @@ int bus_unit_queue_job(
if (r < 0)
return r;
- SET_FOREACH(a, affected, i) {
+ SET_FOREACH(a, affected) {
if (a->id == j->id)
continue;