diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2016-04-14 10:14:41 +0200 |
---|---|---|
committer | Martin Pitt <martin.pitt@ubuntu.com> | 2016-04-14 10:14:41 +0200 |
commit | 8fae819099a189f03213ee657f44545c1b035f7e (patch) | |
tree | a398d2aea2046ae90f149288f9df9befc8d7e4fb /src/machine/machine-dbus.c | |
parent | 43bbb8f005177bcad135ec894419361f0f420034 (diff) | |
parent | 78df0edc1b594017b1d3493eb2033d8a92d9d43f (diff) |
Merge pull request #3033 from keszybz/code-cleanups
Code cleanups
Diffstat (limited to 'src/machine/machine-dbus.c')
-rw-r--r-- | src/machine/machine-dbus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/machine/machine-dbus.c b/src/machine/machine-dbus.c index c7ff0efac8..ab54d9e934 100644 --- a/src/machine/machine-dbus.c +++ b/src/machine/machine-dbus.c @@ -730,7 +730,7 @@ int bus_machine_method_open_shell(sd_bus_message *message, void *userdata, sd_bu return r; /* Name and mode */ - unit = strjoina("container-shell@", p, ".service", NULL); + unit = strjoina("container-shell@", p, ".service"); r = sd_bus_message_append(tm, "ss", unit, "fail"); if (r < 0) return r; |