ref: 5c261eb19a5e92bb6d68e818cf575524067c1e6a
parent: da6229b2983658a38e71cfcd7163d77eda2485c0
author: Arnold D. Robbins <arnold@skeeve.com>
date: Tue Aug 20 05:13:25 EDT 2024
Typo fix in a comment in b.c:resize_gototab.
--- a/b.c
+++ b/b.c
@@ -616,7 +616,7 @@
if (p == NULL)
overflo(__func__);
- // need to initialized the new memory to zero
+ // need to initialize the new memory to zero
size_t orig_size = f->gototab[state].allocated; // 2nd half of new mem is this size
memset(p + orig_size, 0, orig_size * sizeof(gtte)); // clean it out
--
⑨