summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli Abdulkadir <autostart.ini@gmail.com>2018-11-22 23:58:43 +0300
committerAli Abdulkadir <autostart.ini@gmail.com>2018-11-22 23:58:43 +0300
commit9ea4ecca0de24831675fe34b351977e5fb61b66e (patch)
tree8703bef609e94a636f085009da71271780915a1e
parent8b53d51769cd7e975fafb1d05c03495ee61795b5 (diff)
downloadlibnet-9ea4ecca0de24831675fe34b351977e5fb61b66e.tar.gz
Use C99 type __int64_t in libnet-structures.h
-rw-r--r--libnet/include/libnet/libnet-structures.h6
1 files 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 */
};