diff options
| author | xtraeme <xtraeme@NetBSD.org> | 2007-11-02 19:09:22 +0000 |
|---|---|---|
| committer | xtraeme <xtraeme@NetBSD.org> | 2007-11-02 19:09:22 +0000 |
| commit | a8262a855bf36dc8a6e035306255bd549945e140 (patch) | |
| tree | c66913b7441fae24ea94762097e69ba3b99f55ec /sys/dev | |
| parent | cabebfa3138c339eb786c4dc74fe96404afb6e8b (diff) | |
u_quad_t -> uint64_t as suggested by thorpej@.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/biovar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/biovar.h b/sys/dev/biovar.h index cfb8bd284bc..640e70fd2fc 100644 --- a/sys/dev/biovar.h +++ b/sys/dev/biovar.h @@ -1,4 +1,4 @@ -/* $NetBSD: biovar.h,v 1.3 2007/11/02 08:38:38 xtraeme Exp $ */ +/* $NetBSD: biovar.h,v 1.4 2007/11/02 19:09:22 xtraeme Exp $ */ /* $OpenBSD: biovar.h,v 1.26 2007/03/19 03:02:08 marco Exp $ */ /* @@ -89,7 +89,7 @@ struct bioc_disk { #define BIOC_SDSCRUB_S "Scrubbing" #define BIOC_SDINVALID 0xff #define BIOC_SDINVALID_S "Invalid" - u_quad_t bd_size; /* size of the disk */ + uint64_t bd_size; /* size of the disk */ char bd_vendor[32]; /* scsi string */ char bd_serial[32]; /* serial number */ @@ -120,7 +120,7 @@ struct bioc_vol { #define BIOC_SVREBUILD_S "Rebuild" #define BIOC_SVINVALID 0xff #define BIOC_SVINVALID_S "Invalid" - u_quad_t bv_size; /* size of the disk */ + uint64_t bv_size; /* size of the disk */ int bv_level; /* raid level */ int bv_nodisk; /* nr of drives */ |
