diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-09-05 16:02:29 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2009-09-05 16:02:29 +0000 |
commit | 5779817afefc1f5094b3cf883776acd1e969850b (patch) | |
tree | 648db9d9d5c31ca149daf71c5fc1f36aaec4515c | |
parent | 02994e924bf637f5b2a2c6b0bc04f99be6730af3 (diff) |
u_int32_t not u_int32_ts in debug code.
-rw-r--r-- | sys/dev/pci/if_bnxreg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bnxreg.h b/sys/dev/pci/if_bnxreg.h index 5ab110c31e3..47ec555f591 100644 --- a/sys/dev/pci/if_bnxreg.h +++ b/sys/dev/pci/if_bnxreg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bnxreg.h,v 1.32 2009/07/03 06:20:16 deraadt Exp $ */ +/* $OpenBSD: if_bnxreg.h,v 1.33 2009/09/05 16:02:28 claudio Exp $ */ /*- * Copyright (c) 2006 Broadcom Corporation @@ -5022,7 +5022,7 @@ struct bnx_softc { u_int32_t mbuf_sim_alloc_failed; /* Mbuf simulated allocation failure counter. */ u_int32_t l2fhdr_status_errors; u_int32_t unexpected_attentions; - u_int32_ts lost_status_block_updates; + u_int32_t lost_status_block_updates; #endif }; |