git: bb2ba5e2fbf4 - stable/13 - dconschat(8): Fix a typo in an error message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 01 Nov 2022 06:03:09 UTC
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=bb2ba5e2fbf49488bb309e1fac327f52b0f6fd4f commit bb2ba5e2fbf49488bb309e1fac327f52b0f6fd4f Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-10-25 10:58:55 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-11-01 06:02:40 +0000 dconschat(8): Fix a typo in an error message - s/faild/failed/ (cherry picked from commit 7bef61eef3a88a79e9047335812bb683d043b477) --- usr.sbin/dconschat/dconschat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/dconschat/dconschat.c b/usr.sbin/dconschat/dconschat.c index 6d4750585df6..ee39aa6e90a6 100644 --- a/usr.sbin/dconschat/dconschat.c +++ b/usr.sbin/dconschat/dconschat.c @@ -281,7 +281,7 @@ dconschat_get_crom(struct dcons_state *dc) for (i = 20; i < 0x400; i += 4) { if (dread(dc, &buf, 4, addr + i) < 0) { if (verbose) - warn("crom read faild"); + warn("crom read failed"); goto out; } buf = ntohl(buf);