Skip to content

Commit

Permalink
re-generate tclDate.c
Browse files Browse the repository at this point in the history
  • Loading branch information
jan.nijtmans committed Jul 5, 2022
1 parent 22ba83f commit 4aa5e98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generic/tclDate.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@

#define TM_YEAR_BASE 1900

#define HOUR(x) ((int) (60 * x))
#define HOUR(x) ((int) (60 * (x)))
#define SECSPERDAY (24L * 60L * 60L)
#define IsLeapYear(x) ((x % 4 == 0) && (x % 100 != 0 || x % 400 == 0))
#define IsLeapYear(x) (((x) % 4 == 0) && ((x) % 100 != 0 || (x) % 400 == 0))

#define yyIncrFlags(f) \
do { \
Expand Down

0 comments on commit 4aa5e98

Please sign in to comment.