Skip to content

Commit

Permalink
Land #1112 - fix gettimeofday prototype mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
botovq committed Oct 15, 2024
2 parents 574fc3d + 16c2e3c commit 0082b6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crypto/compat/posix_win.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ uid_t getuid(void)

#ifdef _MSC_VER
struct timezone;
int gettimeofday(struct timeval * tp, struct timezone * tzp)
int gettimeofday(struct timeval *tp, void *tzp)
{
/*
* Note: some broken versions only have 8 trailing zero's, the correct
Expand Down

0 comments on commit 0082b6f

Please sign in to comment.