1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Fix bug in m_sleep()

This commit is contained in:
Manuel Pégourié-Gonnard
2014-02-20 22:16:43 +01:00
parent 4c88345f19
commit dfbf9c711d
2 changed files with 2 additions and 1 deletions

View File

@ -302,7 +302,7 @@ void m_sleep( int milliseconds )
struct timeval tv;
tv.tv_sec = milliseconds / 1000;
tv.tv_usec = milliseconds * 1000;
tv.tv_usec = ( milliseconds % 1000 ) * 1000;
select( 0, NULL, NULL, NULL, &tv );
}