Commit e5649e1075801303cbdf2aabc2c164cebcbd783e

Edward Thomson 2021-07-14T08:30:16

Merge pull request #5938 from NattyNarwhal/time-type-mismatch Fix wrong time_t used in function

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/date.c b/src/date.c
index f8594ed..71bf631 100644
--- a/src/date.c
+++ b/src/date.c
@@ -204,7 +204,7 @@ static int is_date(int year, int month, int day, struct tm *now_tm, time_t now, 
 	if (month > 0 && month < 13 && day > 0 && day < 32) {
 		struct tm check = *tm;
 		struct tm *r = (now_tm ? &check : tm);
-		time_t specified;
+		git_time_t specified;
 
 		r->tm_mon = month - 1;
 		r->tm_mday = day;