Skip to content

Commit

Permalink
Fix macos tests
Browse files Browse the repository at this point in the history
  • Loading branch information
taras committed Oct 6, 2024
1 parent 62d9cd5 commit 56ab9d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions picows/picows_compat.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
return picows_convert_wsa_error_to_errno(WSAGetLastError());
}

inline double picows_get_monotonic_time()
inline double picows_get_monotonic_time(void)
{
LARGE_INTEGER frequency, counter;
QueryPerformanceFrequency(&frequency);
Expand All @@ -116,7 +116,7 @@

inline int picows_get_errno(void) { return errno; }

inline double picows_get_monotonic_time()
inline double picows_get_monotonic_time(void)
{
struct timespec ts;
clock_gettime(CLOCK_MONOTONIC, &ts);
Expand Down

0 comments on commit 56ab9d7

Please sign in to comment.