From 9ea4ecca0de24831675fe34b351977e5fb61b66e Mon Sep 17 00:00:00 2001 From: Ali Abdulkadir Date: Thu, 22 Nov 2018 23:58:43 +0300 Subject: Use C99 type __int64_t in libnet-structures.h --- libnet/include/libnet/libnet-structures.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libnet/include/libnet/libnet-structures.h b/libnet/include/libnet/libnet-structures.h index e8ade01..d997b9d 100644 --- a/libnet/include/libnet/libnet-structures.h +++ b/libnet/include/libnet/libnet-structures.h @@ -49,9 +49,9 @@ struct libnet_port_list_chain /* libnet statistics structure */ struct libnet_stats { - __int64 packets_sent; /* packets sent */ - __int64 packet_errors; /* packets errors */ - __int64 bytes_written; /* bytes written */ + __int64_t packets_sent; /* packets sent */ + __int64_t packet_errors; /* packets errors */ + __int64_t bytes_written; /* bytes written */ }; -- cgit v1.2.1