aboutsummaryrefslogtreecommitdiff
path: root/net.h
diff options
context:
space:
mode:
authorAgney Lopes Roth Ferraz <agney@users.sourceforge.net>2005-06-13 18:34:20 -0300
committerSimon Quigley <tsimonq2@ubuntu.com>2017-06-19 14:38:31 -0500
commit61dfceab1e3e9d77aa2900a6e333961f89c4ef45 (patch)
tree673b0f2f59b4b9ed4c2595a5690aa63480190103 /net.h
parent7d65a12d6431f72e601ea1d0c3ef5d09af8bfb96 (diff)
parenta08438bda21b3e0d7db2db2360d040841970104d (diff)
Import Debian changes 0.3.7pre-1
hardinfo (0.3.7pre-1) unstable; urgency=low * New upstream release. (Closes: #280694, #300114, #233033)
Diffstat (limited to 'net.h')
-rw-r--r--net.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/net.h b/net.h
index eeb0fa49..eb9cec00 100644
--- a/net.h
+++ b/net.h
@@ -8,13 +8,13 @@ typedef struct _NetDevice NetDevice;
struct _NetDevice {
gchar *iface;
- guint recv_bytes;
- guint recv_errors;
- guint recv_packets;
+ gulong recv_bytes;
+ gulong recv_errors;
+ gulong recv_packets;
- guint trans_bytes;
- guint trans_errors;
- guint trans_packets;
+ gulong trans_bytes;
+ gulong trans_errors;
+ gulong trans_packets;
NetDevice *next;
};