diff options
author | ru <ru@FreeBSD.org> | 2000-12-18 15:16:24 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2000-12-18 15:16:24 +0000 |
commit | 7fe8bd2b880598e53bc05e6231d702f96becc09e (patch) | |
tree | 878f8e76c54315edcb7335a67637cb7ab5a1e6cd /sbin/bsdlabel | |
parent | 036612bde9cdb357b7e2c00a02d3a82e1aca4462 (diff) | |
download | FreeBSD-src-7fe8bd2b880598e53bc05e6231d702f96becc09e.zip FreeBSD-src-7fe8bd2b880598e53bc05e6231d702f96becc09e.tar.gz |
Prepare for mdoc(7)NG.
Diffstat (limited to 'sbin/bsdlabel')
-rw-r--r-- | sbin/bsdlabel/bsdlabel.5 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/bsdlabel/bsdlabel.5 b/sbin/bsdlabel/bsdlabel.5 index 3583c59..fcd4b0d 100644 --- a/sbin/bsdlabel/bsdlabel.5 +++ b/sbin/bsdlabel/bsdlabel.5 @@ -483,9 +483,9 @@ struct dos_partition { | TYPE |UNIT_2 | SLICE | MAJOR? | UNIT |PART | ----------------------------------------------------------------- */ -#define dkmakeminor(unit, slice, part) \ - (((slice) << 16) | (((unit) & 0x1e0) << 16) | \ - (((unit) & 0x1f) << 3) | (part)) +#define dkmakeminor(unit, slice, part) \e + (((slice) << 16) | (((unit) & 0x1e0) << 16) | \e + (((unit) & 0x1f) << 3) | (part)) static __inline dev_t dkmodpart(dev_t dev, int part) { |