From 08515095c57f2181a0f78f24cb8444d06a180a05 Mon Sep 17 00:00:00 2001 From: Joshua Suskalo Date: Wed, 22 Sep 2021 18:22:39 -0500 Subject: [PATCH] Ensure that the library name is loaded correctly --- src/coffi/ffi.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coffi/ffi.clj b/src/coffi/ffi.clj index 5e9b72b..fb5bbc7 100644 --- a/src/coffi/ffi.clj +++ b/src/coffi/ffi.clj @@ -567,7 +567,7 @@ (defn load-system-library "Loads the library named `libname` from the system's load path." [libname] - (System/loadLibrary (name ~libname))) + (System/loadLibrary (name libname))) (defn load-library "Loads the library at `path`."