From: Zbigniew Jędrzejewski-Szmek Date: Wed, 14 Nov 2012 15:38:34 +0000 (+0100) Subject: timedatectl: break line to not exceed 80 columns X-Git-Tag: v196~81 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=fea05a40ff972aded7006c8ab647b5d81e44ca4b timedatectl: break line to not exceed 80 columns --- diff --git a/src/timedate/timedatectl.c b/src/timedate/timedatectl.c index caa5bc7df..c96377f82 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);