summaryrefslogtreecommitdiff
path: root/src/machine
diff options
context:
space:
mode:
Diffstat (limited to 'src/machine')
-rw-r--r--src/machine/image-dbus.c2
-rw-r--r--src/machine/operation.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/machine/image-dbus.c b/src/machine/image-dbus.c
index ca38f61dd3..db0ed03b69 100644
--- a/src/machine/image-dbus.c
+++ b/src/machine/image-dbus.c
@@ -166,7 +166,7 @@ int bus_image_method_clone(
r = operation_new(m, child, message, errno_pipe_fd[0]);
if (r < 0) {
- (void) sigkill_wait(&child);
+ (void) sigkill_wait(child);
return r;
}
diff --git a/src/machine/operation.c b/src/machine/operation.c
index 53e996b48f..e8564c29f7 100644
--- a/src/machine/operation.c
+++ b/src/machine/operation.c
@@ -104,7 +104,7 @@ Operation *operation_free(Operation *o) {
safe_close(o->errno_fd);
if (o->pid > 1)
- (void) sigkill_wait(&o->pid);
+ (void) sigkill_wait(o->pid);
sd_bus_message_unref(o->message);