diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-07-14 22:48:51 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-07-14 22:48:51 +0000 |
commit | 7647529f02f8767aacad9a672d3bbff826f81418 (patch) | |
tree | 38b931e1cfe2ca5c05fa4b0e3895053e9aa0b1bc /sys/dev | |
parent | f17c40a9a3ab3aecb707d4a031f654247f3fe903 (diff) |
uptimes in secs and usecs seem to be swapped w/ each other; also confirmed by millert
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/anvar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/anvar.h b/sys/dev/ic/anvar.h index 9b78b0a5423..eccfb9c319b 100644 --- a/sys/dev/ic/anvar.h +++ b/sys/dev/ic/anvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: anvar.h,v 1.11 2002/06/09 03:14:18 todd Exp $ */ +/* $OpenBSD: anvar.h,v 1.12 2003/07/14 22:48:50 mickey Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -271,8 +271,8 @@ struct an_ltv_stats { u_int32_t an_lostsync_hostreq; /* 0x16C */ u_int32_t an_host_tx_bytes; /* 0x170 */ u_int32_t an_host_rx_bytes; /* 0x174 */ - u_int32_t an_uptime_secs; /* 0x178 */ - u_int32_t an_uptime_usecs; /* 0x17C */ + u_int32_t an_uptime_usecs; /* 0x178 */ + u_int32_t an_uptime_secs; /* 0x17C */ u_int32_t an_lostsync_better_ap; /* 0x180 */ u_int32_t an_rsvd[10]; }; |