diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-12-26 16:01:43 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-12-26 16:04:10 +0100 |
commit | 8486c92394d7ff2050608c6f335f000f2942a21a (patch) | |
tree | 93d9c60574912b2212fd7535d80585890b30c8ef /src/analyze | |
parent | analyze: add some logging to some error cases (diff) | |
download | systemd-8486c92394d7ff2050608c6f335f000f2942a21a.tar.xz systemd-8486c92394d7ff2050608c6f335f000f2942a21a.zip |
analyze: fix indentation in one case
Diffstat (limited to 'src/analyze')
-rw-r--r-- | src/analyze/analyze.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/analyze/analyze.c b/src/analyze/analyze.c index ec2504a1c0..ae635f0368 100644 --- a/src/analyze/analyze.c +++ b/src/analyze/analyze.c @@ -1276,13 +1276,13 @@ static int dump(int argc, char *argv[], void *userdata) { r = sd_bus_call_method( bus, - "org.freedesktop.systemd1", - "/org/freedesktop/systemd1", - "org.freedesktop.systemd1.Manager", - "Dump", - &error, - &reply, - ""); + "org.freedesktop.systemd1", + "/org/freedesktop/systemd1", + "org.freedesktop.systemd1.Manager", + "Dump", + &error, + &reply, + NULL); if (r < 0) return log_error_errno(r, "Failed issue method call: %s", bus_error_message(&error, r)); |