Date: Sat, 23 Apr 2022 06:59:16 GMT From: Gordon Bergling <gbe@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: a5c50e44d87e - stable/12 - libsa: Fix a typo in a panic message Message-ID: <202204230659.23N6xGq2042164@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/12 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=a5c50e44d87e1e36445ac38c3e6646854aacc757 commit a5c50e44d87e1e36445ac38c3e6646854aacc757 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-04-20 10:56:52 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-04-23 06:59:05 +0000 libsa: Fix a typo in a panic message - s/occured/occurred/ (cherry picked from commit 746cc38ec358f743d3be3fa0b6eeecbf520a38be) --- 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?202204230659.23N6xGq2042164>