git: de1a17db8963 - main - moused: Fix typos
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 02 Mar 2023 16:54:23 UTC
The branch main has been updated by emaste: URL: https://cgit.FreeBSD.org/src/commit/?id=de1a17db89630f0e2b42739093d7c0f2463d6c09 commit de1a17db89630f0e2b42739093d7c0f2463d6c09 Author: Elyes Haouas <ehaouas@noos.fr> AuthorDate: 2023-02-24 06:53:51 +0000 Commit: Ed Maste <emaste@FreeBSD.org> CommitDate: 2023-03-02 16:53:44 +0000 moused: Fix typos Signed-off-by: Elyes Haouas <ehaouas@noos.fr> --- usr.sbin/moused/moused.c | 4 ++-- 1 file 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;