wingo pushed a commit to branch wip-whippet in repository guile. commit 285ca6547253fe83e0c803b4ee2513af7a1fffa6 Author: Andy Wingo <wi...@igalia.com> AuthorDate: Fri May 23 09:44:20 2025 +0200
Fix missing static annotation on root_worklist_alloc --- src/root-worklist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/root-worklist.h b/src/root-worklist.h index 45ede8595..b58d5b549 100644 --- a/src/root-worklist.h +++ b/src/root-worklist.h @@ -22,7 +22,7 @@ struct root_worklist { struct gc_root *buf; }; -void +static void root_worklist_alloc(struct root_worklist *q) { q->buf = realloc(q->buf, q->size * sizeof(struct gc_root)); if (!q->buf) {