aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2023-02-24 06:53:51 +0000
committerEd Maste <emaste@FreeBSD.org>2023-03-02 16:53:44 +0000
commitde1a17db89630f0e2b42739093d7c0f2463d6c09 (patch)
tree3fb16f29c0c6f17eb665bee2d880b39d91127ada
parent2c1b8eb29d92d0911e7493c6a16be04ff6064ad1 (diff)
downloadsrc-de1a17db89630f0e2b42739093d7c0f2463d6c09.tar.gz
src-de1a17db89630f0e2b42739093d7c0f2463d6c09.zip
moused: Fix typos
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
-rw-r--r--usr.sbin/moused/moused.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/moused/moused.c b/usr.sbin/moused/moused.c
index 08aa16f6103b..a6d7a9c2f29b 100644
--- a/usr.sbin/moused/moused.c
+++ b/usr.sbin/moused/moused.c
@@ -3013,7 +3013,7 @@ pnpparse(pnpid_t *id, char *buf, int len)
id->revision = ((buf[1] & 0x3f) << 6) | (buf[2] & 0x3f);
debug("PnP rev %d.%02d", id->revision / 100, id->revision % 100);
- /* EISA vender and product ID */
+ /* EISA vendor and product ID */
id->eisaid = &buf[3];
id->neisaid = 7;
@@ -3053,7 +3053,7 @@ pnpparse(pnpid_t *id, char *buf, int len)
}
/*
* PnP COM spec prior to v0.96 allowed '*' in this field,
- * it's not allowed now; just igore it.
+ * it's not allowed now; just ignore it.
*/
if (buf[j] == '*')
++j;