code formatting

This commit is contained in:
Gwenhael Le Moine 2023-05-17 12:57:18 +02:00
parent b2f360c9e9
commit 32835225fe
No known key found for this signature in database
GPG key ID: FDFE3669426707A7

View file

@ -2415,9 +2415,8 @@ void emulate( void ) {
/* Throttling speed if needed */
gettimeofday( &tv, &tz );
while ( ( tv.tv_sec == tv2.tv_sec ) &&
( ( tv.tv_usec - tv2.tv_usec ) < 2 ) ) {
( ( tv.tv_usec - tv2.tv_usec ) < 2 ) )
gettimeofday( &tv, &tz );
}
tv2.tv_usec = tv.tv_usec;
tv2.tv_sec = tv.tv_sec;