[PATCH 04/13] cal: make day_in_week() use same variable names as other functions

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Signed-off-by: Sami Kerola <kerolasa@xxxxxx>
---
 misc-utils/cal.c | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

diff --git a/misc-utils/cal.c b/misc-utils/cal.c
index abb6e0f..748288d 100644
--- a/misc-utils/cal.c
+++ b/misc-utils/cal.c
@@ -259,7 +259,7 @@ static char *append_weeknum(char *p, int *dp, int month, long year, int cal, int
 static void yearly(int day, long year, const struct cal_control *ctl);
 static void day_array(int day, int month, long year, int *days, const struct cal_control *ctl);
 static int day_in_year(int day, int month, long year);
-static int day_in_week(int d, int m, long y);
+static int day_in_week(int day, int month, long year);
 static int week_number(int day, int month, long year, const struct cal_control *ctl);
 static int week_to_day(long year, const struct cal_control *ctl);
 static char *ascii_day(char *p, int day, const struct cal_control *ctl);
@@ -819,7 +819,7 @@ static int day_in_year(int day, int month, long year)
  *	3 Sep. 1752 through 13 Sep. 1752, and returns invalid weekday
  *	during the period of 11 days.
  */
-static int day_in_week(int d, int m, long y)
+static int day_in_week(int day, int month, long year)
 {
 	static const int reform[] = {
 		SUNDAY, WEDNESDAY, TUESDAY, FRIDAY, SUNDAY, WEDNESDAY,
@@ -829,19 +829,19 @@ static int day_in_week(int d, int m, long y)
 		FRIDAY, MONDAY, SUNDAY, WEDNESDAY, FRIDAY, MONDAY,
 		WEDNESDAY, SATURDAY, TUESDAY, THURSDAY, SUNDAY, TUESDAY
 	};
-	if (y != 1753)
-		y -= m < 3;
+	if (year != 1753)
+		year -= month < 3;
 	else
-		y -= (m < 3) + 14;
-	if (REFORMATION_YEAR < y
-	    || (y == REFORMATION_YEAR && 9 < m)
-	    || (y == REFORMATION_YEAR && m == 9 && 13 < d))
-		return (y + (y / 4) - (y / 100) + (y / 400) + reform[m - 1] +
-			d) % 7;
-	if (y < REFORMATION_YEAR
-	    || (y == REFORMATION_YEAR && m < 9)
-	    || (y == REFORMATION_YEAR && m == 9 && d < 3))
-		return (y + y / 4 + old[m - 1] + d) % 7;
+		year -= (month < 3) + 14;
+	if (REFORMATION_YEAR < year
+	    || (year == REFORMATION_YEAR && 9 < month)
+	    || (year == REFORMATION_YEAR && month == 9 && 13 < day))
+		return (year + (year / 4) - (year / 100) + (year / 400) + reform[month - 1] +
+			day) % 7;
+	if (year < REFORMATION_YEAR
+	    || (year == REFORMATION_YEAR && month < 9)
+	    || (year == REFORMATION_YEAR && month == 9 && day < 3))
+		return (year + year / 4 + old[month - 1] + day) % 7;
 	return NONEDAY;
 }
 
-- 
1.8.4.2

--
To unsubscribe from this list: send the line "unsubscribe util-linux" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Netdev]     [Ethernet Bridging]     [Linux Wireless]     [Kernel Newbies]     [Security]     [Linux for Hams]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux RAID]     [Linux Admin]     [Samba]

  Powered by Linux