mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 23:58:20 +00:00
Deprecate the internal int/uint types in favor of the cstdint types they were based on
This commit is contained in:
parent
18e4976c6c
commit
54752ef9a1
218 changed files with 1331 additions and 1323 deletions
|
@ -1066,8 +1066,8 @@ int main(int argc, char** argv)
|
|||
|
||||
double time_net_start = current_time(true);;
|
||||
|
||||
uint64 mem_net_start_total;
|
||||
uint64 mem_net_start_malloced;
|
||||
uint64_t mem_net_start_total;
|
||||
uint64_t mem_net_start_malloced;
|
||||
|
||||
if ( time_bro )
|
||||
{
|
||||
|
@ -1084,8 +1084,8 @@ int main(int argc, char** argv)
|
|||
|
||||
double time_net_done = current_time(true);;
|
||||
|
||||
uint64 mem_net_done_total;
|
||||
uint64 mem_net_done_malloced;
|
||||
uint64_t mem_net_done_total;
|
||||
uint64_t mem_net_done_malloced;
|
||||
|
||||
if ( time_bro )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue