From 746cc38ec358f743d3be3fa0b6eeecbf520a38be Mon Sep 17 00:00:00 2001 From: Gordon Bergling Date: Wed, 20 Apr 2022 12:56:52 +0200 Subject: [PATCH] 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 bb67bda2aa1..1cd71f7913a 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