From: Lénaïc Huard Date: Tue, 28 Jun 2016 18:15:33 +0000 (+0200) Subject: Remove blank line in the output of “systemctl show” (#3614) X-Git-Tag: v231~105 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a1abf5ea7fa1c3c3ef80937c8d349390ce3da39d;p=platform%2Fupstream%2Fsystemd.git Remove blank line in the output of “systemctl show” (#3614) “systemctl show” added an extra blank line after the dump of the EnvironmentFile property of the unit. --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index c0b285b..e56b9b8 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -4367,7 +4367,7 @@ static int print_property(const char *name, sd_bus_message *m, const char *conte return bus_log_parse_error(r); while ((r = sd_bus_message_read(m, "(sb)", &path, &ignore)) > 0) - print_prop("EnvironmentFile", "%s (ignore_errors=%s)\n", path, yes_no(ignore)); + print_prop("EnvironmentFile", "%s (ignore_errors=%s)", path, yes_no(ignore)); if (r < 0) return bus_log_parse_error(r);