From 44df9bd4bffd7ccbb1934c7dcc6d84527dd43ce9 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 10 Nov 2013 18:23:32 +0000 Subject: [PATCH] cal: simplify ascii_weeknum() function Either the week is or isn't highlighted, there is no need to over complicate printing of that. Signed-off-by: Sami Kerola --- misc-utils/cal.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/misc-utils/cal.c b/misc-utils/cal.c index 748288de32..c1bbdce89d 100644 --- a/misc-utils/cal.c +++ b/misc-utils/cal.c @@ -970,12 +970,9 @@ static char *ascii_day(char *p, int day, const struct cal_control *ctl) static char *ascii_weeknum(char *p, int weeknum, const struct cal_control *ctl) { if ((ctl->weektype & WEEK_NUM_MASK) == weeknum) - p += sprintf(p,"%s",Senter); - p += sprintf(p,"%2d",weeknum); - if ((ctl->weektype & WEEK_NUM_MASK) == weeknum) - p += sprintf(p,"%s ",Sexit); + p += sprintf(p, "%s%2d%s ", Senter, weeknum, Sexit); else - p += sprintf(p," "); + p += sprintf(p, "%2d ", weeknum); return p; } -- 2.47.3