Commit 864e7271 by Linquize

Use gmtime() instead of gmtime_t()

The latter is not available on Windows
parent ff0ef88c
...@@ -125,7 +125,7 @@ static int add_revision(struct log_state *s, const char *revstr) ...@@ -125,7 +125,7 @@ static int add_revision(struct log_state *s, const char *revstr)
static void print_time(const git_time *intime, const char *prefix) static void print_time(const git_time *intime, const char *prefix)
{ {
char sign, out[32]; char sign, out[32];
struct tm intm; struct tm *intm;
int offset, hours, minutes; int offset, hours, minutes;
time_t t; time_t t;
...@@ -142,8 +142,8 @@ static void print_time(const git_time *intime, const char *prefix) ...@@ -142,8 +142,8 @@ static void print_time(const git_time *intime, const char *prefix)
t = (time_t)intime->time + (intime->offset * 60); t = (time_t)intime->time + (intime->offset * 60);
gmtime_r(&t, &intm); intm = gmtime(&t);
strftime(out, sizeof(out), "%a %b %e %T %Y", &intm); strftime(out, sizeof(out), "%a %b %e %T %Y", intm);
printf("%s%s %c%02d%02d\n", prefix, out, sign, hours, minutes); printf("%s%s %c%02d%02d\n", prefix, out, sign, hours, minutes);
} }
......
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