mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 14:38:39 +00:00
Fix one more warning on windows
This commit is contained in:
parent
dda5213982
commit
6d71e4e6c3
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ unsigned long get_timer( struct hr_time *val, int reset )
|
||||||
/* It's OK to use a global because alarm() is supposed to be global anyway */
|
/* It's OK to use a global because alarm() is supposed to be global anyway */
|
||||||
static DWORD alarmMs;
|
static DWORD alarmMs;
|
||||||
|
|
||||||
DWORD WINAPI TimerProc( LPVOID TimerContext )
|
static DWORD WINAPI TimerProc( LPVOID TimerContext )
|
||||||
{
|
{
|
||||||
((void) TimerContext);
|
((void) TimerContext);
|
||||||
Sleep( alarmMs );
|
Sleep( alarmMs );
|
||||||
|
|
Loading…
Reference in a new issue