Skip to content

Commit

Permalink
Change 64-bit time type for windows
Browse files Browse the repository at this point in the history
Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from openssl/openssl#3248)
  • Loading branch information
jon-oracle authored and Rich Salz committed Apr 19, 2017
1 parent d1186c3 commit 424aa35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fuzz/client.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ static int idx;
* coverage.
*/
#if defined(_WIN32) && defined(_TIME64_T_DEFINED)
time64_t _time64(time64_t *t) TIME_IMPL(t)
__time64_t _time64(__time64_t *t) TIME_IMPL(t)
#endif
#if !defined(_WIN32) || !defined(_MSC_VER)
time_t time(time_t *t) TIME_IMPL(t)
Expand Down
2 changes: 1 addition & 1 deletion fuzz/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ static int idx;
* coverage.
*/
#if defined(_WIN32) && defined(_TIME64_T_DEFINED)
time64_t _time64(time64_t *t) TIME_IMPL(t)
__time64_t _time64(__time64_t *t) TIME_IMPL(t)
#endif
#if !defined(_WIN32) || !defined(_MSC_VER)
time_t time(time_t *t) TIME_IMPL(t)
Expand Down

0 comments on commit 424aa35

Please sign in to comment.