From 285ca6547253fe83e0c803b4ee2513af7a1fffa6 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Fri, 23 May 2025 09:44:20 +0200 Subject: [PATCH] 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) {