summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkettenis <kettenis@openbsd.org>2008-07-07 14:38:42 +0000
committerkettenis <kettenis@openbsd.org>2008-07-07 14:38:42 +0000
commitfada538eea540a07be017e632a8f8c2e6edc473f (patch)
treea01fb1ca702ed7b64d70d784c93e199735e62896
parentUpdate to tzdata2008d from elsie.nci.nih.gov. (diff)
downloadwireguard-openbsd-fada538eea540a07be017e632a8f8c2e6edc473f.tar.xz
wireguard-openbsd-fada538eea540a07be017e632a8f8c2e6edc473f.zip
Fix typo in comment.
-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;