The branch stable/15 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=523ed3afa4a9f69bf25e1ea7863ad375b91a5a73
commit 523ed3afa4a9f69bf25e1ea7863ad375b91a5a73 Author: Gordon Bergling <[email protected]> AuthorDate: 2025-10-26 15:26:21 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2025-11-02 01:08:56 +0000 rtlbtfw(8): Fix a typo in an error message - s/Parseing/Parsing/ (cherry picked from commit 39d43543b306ac686aa684303ae972c386ccea12) --- usr.sbin/bluetooth/rtlbtfw/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/bluetooth/rtlbtfw/main.c b/usr.sbin/bluetooth/rtlbtfw/main.c index 280045a6aa25..58503b8087b5 100644 --- a/usr.sbin/bluetooth/rtlbtfw/main.c +++ b/usr.sbin/bluetooth/rtlbtfw/main.c @@ -479,7 +479,7 @@ main(int argc, char *argv[]) } else r = rtlbt_parse_fwfile_v1(&fw, rom_version); if (r < 0) { - rtlbt_err("Parseing firmware file failed"); + rtlbt_err("Parsing firmware file failed"); goto shutdown; }
