diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-07-07 14:38:43 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-07-07 14:38:43 +0000 |
commit | 21292843744298b122392609d93a6fe47a2b3dad (patch) | |
tree | 3b36c82a144ac200f59120c3aec916970481c205 /sys | |
parent | 08c5766e0c0a82f637ed8b7d3527dedc7d04837e (diff) |
Fix typo in comment.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/dev/vcons.c | 4 |
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; |