diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2015-09-30 14:57:04 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2015-09-30 14:57:04 +0000 |
commit | cdcc4535b4686c8748e1805ed9817bcf0466a59d (patch) | |
tree | e270bdd735d6d45b2420119b9fbdb23e1237dc0b /sys/arch/loongson/include | |
parent | 5d73202a4c74eddd671ab127bcbcce27a1066423 (diff) |
Use consistant whitespace/comments for #define'ing LABELSECTOR,
LABELOFFSET and MAXPARTITIONS. Easier on the eye when scanning
through all these files. No functional change.
Diffstat (limited to 'sys/arch/loongson/include')
-rw-r--r-- | sys/arch/loongson/include/disklabel.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/loongson/include/disklabel.h b/sys/arch/loongson/include/disklabel.h index 7a9dbe028e9..6fe42a8bf66 100644 --- a/sys/arch/loongson/include/disklabel.h +++ b/sys/arch/loongson/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.1 2009/08/04 20:26:39 miod Exp $ */ +/* $OpenBSD: disklabel.h,v 1.2 2015/09/30 14:57:03 krw Exp $ */ /* public domain */ /* @@ -6,6 +6,6 @@ * of the OpenBSD partition. */ -#define LABELSECTOR 1 -#define LABELOFFSET 0 -#define MAXPARTITIONS 16 +#define LABELSECTOR 1 /* sector containing label */ +#define LABELOFFSET 0 /* offset of label in sector */ +#define MAXPARTITIONS 16 /* number of partitions */ |