Date: Wed, 20 Apr 2022 10:57:15 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 746cc38ec358 - main - libsa: Fix a typo in a panic message Message-ID: <202204201057.23KAvFxJ028461@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=746cc38ec358f743d3be3fa0b6eeecbf520a38be commit 746cc38ec358f743d3be3fa0b6eeecbf520a38be Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-04-20 10:56:52 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-04-20 10:56:52 +0000 libsa: Fix a typo in a panic message - s/occured/occurred/ MFC after: 3 days --- stand/libsa/bzipfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/libsa/bzipfs.c b/stand/libsa/bzipfs.c index bb67bda2aa19..1cd71f7913a0 100644 --- a/stand/libsa/bzipfs.c +++ b/stand/libsa/bzipfs.c @@ -363,7 +363,7 @@ bzf_stat(struct open_file *f, struct stat *sb) void bz_internal_error(int errorcode) { - panic("bzipfs: critical error %d in bzip2 library occured", errorcode); + panic("bzipfs: critical error %d in bzip2 library occurred", errorcode); } #ifdef REGRESSION
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202204201057.23KAvFxJ028461>