nspawn: merge two variable declaration lines

This commit is contained in:
Lennart Poettering 2018-10-05 22:56:20 +02:00
parent 11d81e506e
commit df61bc5e4a
1 changed files with 1 additions and 2 deletions

View File

@ -236,9 +236,8 @@ int allocate_scope(
int kill_signal,
char **properties) {
_cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL, *reply = NULL;
_cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
_cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
_cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
_cleanup_(bus_wait_for_jobs_freep) BusWaitForJobs *w = NULL;
_cleanup_free_ char *scope = NULL;
const char *description, *object;