summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2008-07-07 14:38:43 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2008-07-07 14:38:43 +0000
commit21292843744298b122392609d93a6fe47a2b3dad (patch)
tree3b36c82a144ac200f59120c3aec916970481c205 /sys
parent08c5766e0c0a82f637ed8b7d3527dedc7d04837e (diff)
Fix typo in comment.
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/sparc64/dev/vcons.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/vcons.c b/sys/arch/sparc64/dev/vcons.c
index eeba4dfd3a3..7c79d752ba4 100644
--- a/sys/arch/sparc64/dev/vcons.c
+++ b/sys/arch/sparc64/dev/vcons.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vcons.c,v 1.1 2008/03/08 19:38:33 kettenis Exp $ */
+/* $OpenBSD: vcons.c,v 1.2 2008/07/07 14:38:42 kettenis Exp $ */
/*
* Copyright (c) 2008 Mark Kettenis
*
@@ -85,7 +85,7 @@ vcons_attach(struct device *parent, struct device *self, void *aux)
cn_tab->cn_getc = vcons_cngetc;
cn_tab->cn_putc = vcons_cnputc;
- /* Locate the mahor number. */
+ /* Locate the major number. */
for (maj = 0; maj < nchrdev; maj++)
if (cdevsw[maj].d_open == vconsopen)
break;