From 212aceedc6b10c002160ce428778f211c2022171 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Thu, 2 Jan 2020 22:12:07 -0600 Subject: [PATCH] Fix useless type conversion. --- src/core/gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/gc.c b/src/core/gc.c index 9ad00f09..2599737d 100644 --- a/src/core/gc.c +++ b/src/core/gc.c @@ -67,7 +67,7 @@ static void janet_mark_abstract(void *adata); /* Local state that is only temporary for gc */ static JANET_THREAD_LOCAL uint32_t depth = JANET_RECURSION_GUARD; -static JANET_THREAD_LOCAL uint32_t orig_rootcount; +static JANET_THREAD_LOCAL size_t orig_rootcount; /* Mark a value */ void janet_mark(Janet x) {