From: kettenis Date: Mon, 7 Jul 2008 14:38:42 +0000 (+0000) Subject: Fix typo in comment. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=fada538eea540a07be017e632a8f8c2e6edc473f;p=openbsd Fix typo in comment. --- 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;