diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-05-31 03:19:20 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2007-05-31 03:19:20 +0000 |
commit | a124d805c9db10fb80f0388d2f6b0d76413f212c (patch) | |
tree | 0c56ce8c32e74db55ed620242e16ec00a220466f /sys | |
parent | 12b58eedfbcb799ab1180059de0141d9361c59ac (diff) |
oops, typo
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/disklabel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/disklabel.h b/sys/sys/disklabel.h index beeb84f334d..f9a157d3e18 100644 --- a/sys/sys/disklabel.h +++ b/sys/sys/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.31 2007/05/31 02:33:37 otto Exp $ */ +/* $OpenBSD: disklabel.h,v 1.32 2007/05/31 03:19:19 otto Exp $ */ /* $NetBSD: disklabel.h,v 1.41 1996/05/10 23:07:37 mark Exp $ */ /* @@ -205,7 +205,7 @@ struct __partitionv0 { /* the partition table */ #define DL_PSIZE(p) (((u_int64_t)(p)->p_sizeh << 32) + (p)->p_size) #define DL_POFFSET(p) (((u_int64_t)(p)->p_offseth << 32) + (p)->p_offset) -#define DL_DSIZE(d) (((u_int64_t)(d)->d_secperunith << 32) + (d)->d_secperun +#define DL_DSIZE(d) (((u_int64_t)(d)->d_secperunith << 32) + (d)->d_secperunit) /* d_type values: */ |