git: d685aeacce8c - stable/13 - libsa: Fix a typo in a panic message

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Sat, 23 Apr 2022 06:56:26 UTC
The branch stable/13 has been updated by gbe (doc committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=d685aeacce8cb0739d1fd978310dd98adfe7d276

commit d685aeacce8cb0739d1fd978310dd98adfe7d276
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:56:02 +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