From c7be00749db7228734c92524263f1a82240dee56 Mon Sep 17 00:00:00 2001 From: Sevan Janiyan Date: Tue, 19 Aug 2025 17:17:10 +0100 Subject: [PATCH] bstrlib.c: spello --- bstring/bstrlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bstring/bstrlib.c b/bstring/bstrlib.c index 44ca488..500eb1f 100644 --- a/bstring/bstrlib.c +++ b/bstring/bstrlib.c @@ -115,7 +115,7 @@ balloc(bstring b, int olen) retry: x = realloc(b->data, len); if (x == NULL) { - /* Since we failed, try mallocating the tighest + /* Since we failed, try mallocating the tightest * possible mallocation */ len = olen;