From: Brendan Hansen Date: Sat, 11 Mar 2023 00:41:28 +0000 (-0600) Subject: bugfix: window compilation, this time with feeling X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=7c5c9fc86374f7b4943fec4553b1ee285f531235;p=onyx.git bugfix: window compilation, this time with feeling --- diff --git a/compiler/src/wasm_runtime.c b/compiler/src/wasm_runtime.c index faac4a4c..78745a7e 100644 --- a/compiler/src/wasm_runtime.c +++ b/compiler/src/wasm_runtime.c @@ -135,7 +135,7 @@ static WasmFuncDefinition** onyx_load_library(LinkLibraryContext *ctx, char *nam LinkLibraryer library_load = locate_symbol_in_dynamic_library(ctx, name, library_load_name); if (library_load == NULL) { - printf("ERROR RESOLVING '%s': %s\n", library_load_name, dlerror()); + printf("ERROR RESOLVING '%s'\n", library_load_name); return NULL; }