From d763d6f697a526df9dd66d32cd6171a1c700f29a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Isager=20Dalsgar=C3=B0?= Date: Fri, 5 Apr 2024 12:07:06 +0200 Subject: [PATCH] Use correct `source` reference --- src/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread.c b/src/thread.c index 6bf8c80..62539b4 100644 --- a/src/thread.c +++ b/src/thread.c @@ -95,7 +95,7 @@ bare_thread_entry (void *opaque) { uv_sem_post(&thread->lock); - bare_runtime_run(runtime, thread->filename, thread->source); + bare_runtime_run(runtime, thread->filename, source); free(thread->filename);