aboutsummaryrefslogtreecommitdiffstats
path: root/main/libnet/fix-types.patch
blob: 38b1f536a31a7b50b44820b13792402ea9f5789c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- a/include/libnet/libnet-structures.h
+++ b/include/libnet/libnet-structures.h
@@ -49,9 +49,9 @@
 /* libnet statistics structure */
 struct libnet_stats
 {
-    __int64_t packets_sent;               /* packets sent */
-    __int64_t packet_errors;              /* packets errors */
-    __int64_t bytes_written;              /* bytes written */
+    int64_t packets_sent;               /* packets sent */
+    int64_t packet_errors;              /* packets errors */
+    int64_t bytes_written;              /* bytes written */
 };