Unverified Commit e5649e10 by Edward Thomson Committed by GitHub

Merge pull request #5938 from NattyNarwhal/time-type-mismatch

Fix wrong time_t used in function
parents 97cd165e be67f512
...@@ -204,7 +204,7 @@ static int is_date(int year, int month, int day, struct tm *now_tm, time_t now, ...@@ -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) { if (month > 0 && month < 13 && day > 0 && day < 32) {
struct tm check = *tm; struct tm check = *tm;
struct tm *r = (now_tm ? &check : tm); struct tm *r = (now_tm ? &check : tm);
time_t specified; git_time_t specified;
r->tm_mon = month - 1; r->tm_mon = month - 1;
r->tm_mday = day; r->tm_mday = day;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment