summaryrefslogtreecommitdiff
path: root/src/timedate
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2012-11-14 16:38:34 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2012-11-14 22:49:29 +0100
commitfea05a40ff972aded7006c8ab647b5d81e44ca4b (patch)
treee079abc519bc8d3f612ef8da2762cdd5a18ec2f2 /src/timedate
parente7098b699a025ea852a5e21b0e9122116f3f26bd (diff)
timedatectl: break line to not exceed 80 columns
Diffstat (limited to 'src/timedate')
-rw-r--r--src/timedate/timedatectl.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/timedate/timedatectl.c b/src/timedate/timedatectl.c
index caa5bc7dfb..c96377f829 100644
--- a/src/timedate/timedatectl.c
+++ b/src/timedate/timedatectl.c
@@ -187,7 +187,8 @@ static void print_status_info(StatusInfo *i) {
zero(tm);
assert_se(strftime(b, sizeof(b), "%a, %Y-%m-%d %H:%M:%S %Z", localtime_r(&tn, &tm)) > 0);
char_array_0(b);
- printf(" Next DST change: %s → %s, DST will become %s, the clock will jump %s\n"
+ printf(" Next DST change: %s → %s, DST will become %s\n"
+ " the clock will jump %s\n"
" %s\n"
" %s\n",
strna(zc), strna(zn), is_dstn ? "active" : "inactive", jump_str(dn, s, sizeof(s)), a, b);