mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-30 00:02:44 +00:00
Fix compiling on platforms with 64bit time_t.
This commit is contained in:
parent
0717619c5c
commit
98f9589da1
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=153470
@ -126,9 +126,9 @@ blast_loop(int s, long duration, u_char *packet, u_int packet_len)
|
||||
}
|
||||
|
||||
printf("\n");
|
||||
printf("start: %d.%09lu\n", starttime.tv_sec,
|
||||
printf("start: %zd.%09lu\n", starttime.tv_sec,
|
||||
starttime.tv_nsec);
|
||||
printf("finish: %d.%09lu\n", tmptime.tv_sec,
|
||||
printf("finish: %zd.%09lu\n", tmptime.tv_sec,
|
||||
tmptime.tv_nsec);
|
||||
printf("send calls: %d\n", send_calls);
|
||||
printf("send errors: %d\n", send_errors);
|
||||
|
Loading…
Reference in New Issue
Block a user