1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-04 11:10:27 +02:00

Fix missing static annotation on root_worklist_alloc

This commit is contained in:
Andy Wingo 2025-05-23 09:44:20 +02:00
parent f12399ef7d
commit 285ca65472

View file

@ -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) {