Loading src/tool_util.c +1 −1 Original line number Diff line number Diff line Loading @@ -47,7 +47,7 @@ struct timeval tvnow(void) DWORD milliseconds = GetTickCount(); #endif now.tv_sec = (long)(milliseconds / 1000); now.tv_usec = (milliseconds % 1000) * 1000; now.tv_usec = (long)((milliseconds % 1000) * 1000); return now; } Loading tests/server/util.c +1 −1 Original line number Diff line number Diff line Loading @@ -422,7 +422,7 @@ static struct timeval tvnow(void) DWORD milliseconds = GetTickCount(); #endif now.tv_sec = (long)(milliseconds / 1000); now.tv_usec = (milliseconds % 1000) * 1000; now.tv_usec = (long)((milliseconds % 1000) * 1000); return now; } Loading Loading
src/tool_util.c +1 −1 Original line number Diff line number Diff line Loading @@ -47,7 +47,7 @@ struct timeval tvnow(void) DWORD milliseconds = GetTickCount(); #endif now.tv_sec = (long)(milliseconds / 1000); now.tv_usec = (milliseconds % 1000) * 1000; now.tv_usec = (long)((milliseconds % 1000) * 1000); return now; } Loading
tests/server/util.c +1 −1 Original line number Diff line number Diff line Loading @@ -422,7 +422,7 @@ static struct timeval tvnow(void) DWORD milliseconds = GetTickCount(); #endif now.tv_sec = (long)(milliseconds / 1000); now.tv_usec = (milliseconds % 1000) * 1000; now.tv_usec = (long)((milliseconds % 1000) * 1000); return now; } Loading