From fb2d41bc5b9f7e3a06e1b540a98709ac51e14bc3 Mon Sep 17 00:00:00 2001 From: Shaw Summa Date: Sun, 19 May 2024 09:38:42 -0400 Subject: [PATCH] small windows fix --- vm/backend/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/backend/exec.c b/vm/backend/exec.c index 039f1e84..81e099bf 100644 --- a/vm/backend/exec.c +++ b/vm/backend/exec.c @@ -11,7 +11,7 @@ #include "../../vendor/xxhash/xxhash.h" void *vm_cache_dlsym(void *handle, const char *name) { - return GetProcAddress(handle, entry); + return GetProcAddress(handle, name); } void *vm_cache_comp(const char *comp, const char *flags, const char *src) {