From: Zbigniew Jędrzejewski-Szmek Date: Tue, 29 Oct 2019 16:30:36 +0000 (+0100) Subject: nspawn: wrap some long lines X-Git-Tag: v244-rc1~63^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f1d60962e5f21e2af7af9e8bc06ecf28da89e1b1;p=thirdparty%2Fsystemd.git nspawn: wrap some long lines --- diff --git a/src/run/run.c b/src/run/run.c index afa9d14af36..3d63cf02540 100644 --- a/src/run/run.c +++ b/src/run/run.c @@ -1256,7 +1256,7 @@ static int start_transient_service( if (arg_wait && !arg_quiet) { - /* Explicitly destroy the PTY forwarder, so that the PTY device is usable again, in its + /* Explicitly destroy the PTY forwarder, so that the PTY device is usable again, with its * original settings (i.e. proper line breaks), so that we can show the summary in a pretty * way. */ c.forward = pty_forward_free(c.forward); @@ -1265,37 +1265,41 @@ static int start_transient_service( log_info("Finished with result: %s", strna(c.result)); if (c.exit_code == CLD_EXITED) - log_info("Main processes terminated with: code=%s/status=%i", sigchld_code_to_string(c.exit_code), c.exit_status); + log_info("Main processes terminated with: code=%s/status=%i", + sigchld_code_to_string(c.exit_code), c.exit_status); else if (c.exit_code > 0) - log_info("Main processes terminated with: code=%s/status=%s", sigchld_code_to_string(c.exit_code), signal_to_string(c.exit_status)); + log_info("Main processes terminated with: code=%s/status=%s", + sigchld_code_to_string(c.exit_code), signal_to_string(c.exit_status)); if (timestamp_is_set(c.inactive_enter_usec) && timestamp_is_set(c.inactive_exit_usec) && c.inactive_enter_usec > c.inactive_exit_usec) { char ts[FORMAT_TIMESPAN_MAX]; - log_info("Service runtime: %s", format_timespan(ts, sizeof(ts), c.inactive_enter_usec - c.inactive_exit_usec, USEC_PER_MSEC)); + log_info("Service runtime: %s", + format_timespan(ts, sizeof ts, c.inactive_enter_usec - c.inactive_exit_usec, USEC_PER_MSEC)); } if (c.cpu_usage_nsec != NSEC_INFINITY) { char ts[FORMAT_TIMESPAN_MAX]; - log_info("CPU time consumed: %s", format_timespan(ts, sizeof(ts), (c.cpu_usage_nsec + NSEC_PER_USEC - 1) / NSEC_PER_USEC, USEC_PER_MSEC)); + log_info("CPU time consumed: %s", + format_timespan(ts, sizeof ts, (c.cpu_usage_nsec + NSEC_PER_USEC - 1) / NSEC_PER_USEC, USEC_PER_MSEC)); } if (c.ip_ingress_bytes != UINT64_MAX) { char bytes[FORMAT_BYTES_MAX]; - log_info("IP traffic received: %s", format_bytes(bytes, sizeof(bytes), c.ip_ingress_bytes)); + log_info("IP traffic received: %s", format_bytes(bytes, sizeof bytes, c.ip_ingress_bytes)); } if (c.ip_egress_bytes != UINT64_MAX) { char bytes[FORMAT_BYTES_MAX]; - log_info("IP traffic sent: %s", format_bytes(bytes, sizeof(bytes), c.ip_egress_bytes)); + log_info("IP traffic sent: %s", format_bytes(bytes, sizeof bytes, c.ip_egress_bytes)); } if (c.io_read_bytes != UINT64_MAX) { char bytes[FORMAT_BYTES_MAX]; - log_info("IO bytes read: %s", format_bytes(bytes, sizeof(bytes), c.io_read_bytes)); + log_info("IO bytes read: %s", format_bytes(bytes, sizeof bytes, c.io_read_bytes)); } if (c.io_write_bytes != UINT64_MAX) { char bytes[FORMAT_BYTES_MAX]; - log_info("IO bytes written: %s", format_bytes(bytes, sizeof(bytes), c.io_write_bytes)); + log_info("IO bytes written: %s", format_bytes(bytes, sizeof bytes, c.io_write_bytes)); } }