forked from mirrors/tftp-hpa-google
Formatting cleanup
Clean up line break
This commit is contained in:
parent
22accddda0
commit
cd22c6ea31
1 changed files with 2 additions and 2 deletions
|
@ -223,8 +223,8 @@ static int recv_time(int s, void *rbuf, int len, unsigned int flags,
|
|||
|
||||
gettimeofday(&t1, NULL);
|
||||
|
||||
dt = (t1.tv_sec - t0.tv_sec) * 1000000 + (t1.tv_usec -
|
||||
t0.tv_usec);
|
||||
dt = (t1.tv_sec - t0.tv_sec) * 1000000 +
|
||||
(t1.tv_usec - t0.tv_usec);
|
||||
*timeout_us_p = timeout_left =
|
||||
(dt >= timeout_us) ? 1 : (timeout_us - dt);
|
||||
} while (rv == -1 && err == EINTR);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue