Date: Fri, 12 Apr 2024 22:37:15 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 0fc1fb1491c6 - main - libc(bt_seq.c): fix "uninitialized" spelling Message-ID: <202404122237.43CMbFli018714@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=0fc1fb1491c6e5d41d2d5096cd7b14cb321a4d9c commit 0fc1fb1491c6e5d41d2d5096cd7b14cb321a4d9c Author: rilysh <nightquick@proton.me> AuthorDate: 2024-02-13 08:47:03 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2024-04-12 22:34:54 +0000 libc(bt_seq.c): fix "uninitialized" spelling From "unitialized" to "uninitialized". Signed-off-by: rilysh <nightquick@proton.me> Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/1119 --- lib/libc/db/btree/bt_seq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libc/db/btree/bt_seq.c b/lib/libc/db/btree/bt_seq.c index 9324149f1d5a..2562724faf33 100644 --- a/lib/libc/db/btree/bt_seq.c +++ b/lib/libc/db/btree/bt_seq.c @@ -83,7 +83,7 @@ __bt_seq(const DB *dbp, DBT *key, DBT *data, u_int flags) } /* - * If scan unitialized as yet, or starting at a specific record, set + * If scan uninitialized as yet, or starting at a specific record, set * the scan to a specific key. Both __bt_seqset and __bt_seqadv pin * the page the cursor references if they're successful. */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202404122237.43CMbFli018714>