code formatting
This commit is contained in:
parent
b2f360c9e9
commit
32835225fe
1 changed files with 1 additions and 2 deletions
|
@ -2415,9 +2415,8 @@ void emulate( void ) {
|
||||||
/* Throttling speed if needed */
|
/* Throttling speed if needed */
|
||||||
gettimeofday( &tv, &tz );
|
gettimeofday( &tv, &tz );
|
||||||
while ( ( tv.tv_sec == tv2.tv_sec ) &&
|
while ( ( tv.tv_sec == tv2.tv_sec ) &&
|
||||||
( ( tv.tv_usec - tv2.tv_usec ) < 2 ) ) {
|
( ( tv.tv_usec - tv2.tv_usec ) < 2 ) )
|
||||||
gettimeofday( &tv, &tz );
|
gettimeofday( &tv, &tz );
|
||||||
}
|
|
||||||
|
|
||||||
tv2.tv_usec = tv.tv_usec;
|
tv2.tv_usec = tv.tv_usec;
|
||||||
tv2.tv_sec = tv.tv_sec;
|
tv2.tv_sec = tv.tv_sec;
|
||||||
|
|
Loading…
Reference in a new issue