git: a5c50e44d87e - stable/12 - libsa: Fix a typo in a panic message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 23 Apr 2022 06:59:16 UTC
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