mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:12:57 +00:00
Fix transfer summary
svn path=/trunk/; revision=20321
This commit is contained in:
parent
d22675a805
commit
b321c10094
2 changed files with 3 additions and 3 deletions
|
@ -317,8 +317,8 @@ int gettimeofday(struct timeval *tv, struct timezone *tz)
|
||||||
if (tv)
|
if (tv)
|
||||||
{
|
{
|
||||||
GetSystemTimeAsFileTime(&ft);
|
GetSystemTimeAsFileTime(&ft);
|
||||||
//li.LowPart = ft.dwLowDateTime;
|
li.LowPart = ft.dwLowDateTime;
|
||||||
//li.HighPart = ft.dwHighDateTime;
|
li.HighPart = ft.dwHighDateTime;
|
||||||
t = li.QuadPart; /* In 100-nanosecond intervals */
|
t = li.QuadPart; /* In 100-nanosecond intervals */
|
||||||
t -= EPOCHFILETIME; /* Offset to the Epoch time */
|
t -= EPOCHFILETIME; /* Offset to the Epoch time */
|
||||||
t /= 10; /* In microseconds */
|
t /= 10; /* In microseconds */
|
||||||
|
|
|
@ -1294,7 +1294,7 @@ void ptransfer(direction, bytes, t0, t1)
|
||||||
s = td.tv_sec + (td.tv_usec / 1000000.);
|
s = td.tv_sec + (td.tv_usec / 1000000.);
|
||||||
#define nz(x) ((x) == 0 ? 1 : (x))
|
#define nz(x) ((x) == 0 ? 1 : (x))
|
||||||
bs = bytes / nz(s);
|
bs = bytes / nz(s);
|
||||||
printf("%ld bytes %s in %.2g seconds (%.2g Kbytes/s)\n",
|
printf("%ld bytes %s in %.1f seconds (%.0f Kbytes/s)\n",
|
||||||
bytes, direction, s, bs / 1024.);
|
bytes, direction, s, bs / 1024.);
|
||||||
(void) fflush(stdout);
|
(void) fflush(stdout);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue