Module Name: src
Committed By: pgoyette
Date: Sat Nov 9 16:46:09 UTC 2019
Modified Files:
src/sys/sys: disklabel.h
Log Message:
Fix a typo is christos long comment. :)
To generate a diff of this commit:
cvs rdiff -u -r1.121 -r1.122 src/sys/sys/disklabel.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/sys/disklabel.h
diff -u src/sys/sys/disklabel.h:1.121 src/sys/sys/disklabel.h:1.122
--- src/sys/sys/disklabel.h:1.121 Sat Nov 9 16:40:38 2019
+++ src/sys/sys/disklabel.h Sat Nov 9 16:46:09 2019
@@ -1,4 +1,4 @@
-/* $NetBSD: disklabel.h,v 1.121 2019/11/09 16:40:38 christos Exp $ */
+/* $NetBSD: disklabel.h,v 1.122 2019/11/09 16:46:09 pgoyette Exp $ */
/*
* Copyright (c) 1987, 1988, 1993
@@ -121,7 +121,7 @@ struct partition { /* the partition tab
* We'd rather have disklabel be the same size on 32 and 64 bit systems
* but it really isn't. In revision 108 matt@ tried to do that by adding
* un_d_pad as a uint64_t. This was really smart because the net effect
- * as to grow the struct by 4 bytes on most LP32 machines and make it
+ * was to grow the struct by 4 bytes on most LP32 machines and make it
* the same as LP64 without changing the layout (which is a nono because
* it is stored on existing disks). The easy way would have been to add
* padding at the end, but that would have been confusing (although that