nspawn: drop unused parameter from one call
authorLennart Poettering <lennart@poettering.net>
Wed, 13 Jun 2018 15:36:54 +0000 (17:36 +0200)
committerLennart Poettering <lennart@poettering.net>
Wed, 13 Jun 2018 15:42:16 +0000 (17:42 +0200)
src/nspawn/nspawn-register.c

index c0cdb7c..05849e4 100644 (file)
@@ -20,8 +20,7 @@ static int append_machine_properties(
                 sd_bus_message *m,
                 CustomMount *mounts,
                 unsigned n_mounts,
-                int kill_signal,
-                char **properties) {
+                int kill_signal) {
 
         unsigned j;
         int r;
@@ -186,8 +185,7 @@ int register_machine(
                                 m,
                                 mounts,
                                 n_mounts,
-                                kill_signal,
-                                properties);
+                                kill_signal);
                 if (r < 0)
                         return r;
 
@@ -322,8 +320,7 @@ int allocate_scope(
                         m,
                         mounts,
                         n_mounts,
-                        kill_signal,
-                        properties);
+                        kill_signal);
         if (r < 0)
                 return r;