diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2017-12-02 01:49:52 +0100 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2017-12-02 01:49:52 +0100 |
commit | 508f63b411f6d2176c6948bc86dac14937dfdcf2 (patch) | |
tree | 34346dbe9810972d7eacad40c1e0af77ed3f61aa /src/systemctl/systemctl.c | |
parent | Merge pull request #7528 from vcaputo/localectl-fix-indent (diff) | |
download | systemd-508f63b411f6d2176c6948bc86dac14937dfdcf2.tar.xz systemd-508f63b411f6d2176c6948bc86dac14937dfdcf2.zip |
*: fix some inconsistent control statement style
Diffstat (limited to '')
-rw-r--r-- | src/systemctl/systemctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index e121d580cf..33fbaf9950 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -4779,7 +4779,7 @@ skip: printf(fmt "\n", __VA_ARGS__); \ else \ printf("%s=" fmt "\n", name, __VA_ARGS__); \ - } while(0) + } while (0) static int print_property(const char *name, sd_bus_message *m, const char *contents) { int r; |