From 30f8ce69cf6581a37123f073aa896e42c1af14ad Mon Sep 17 00:00:00 2001 From: Brett Mayson Date: Tue, 17 Sep 2024 21:40:00 -0600 Subject: [PATCH] another maybe fix --- README.md | 2 +- arma-rs/Cargo.toml | 2 +- arma-rs/src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 80209a7..d0d4bbc 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The best way to make Arma 3 Extensions. ```toml [dependencies] -arma-rs = "1.11.3" +arma-rs = "1.11.4" [lib] name = "my_extension" diff --git a/arma-rs/Cargo.toml b/arma-rs/Cargo.toml index a7f7a48..76185f5 100644 --- a/arma-rs/Cargo.toml +++ b/arma-rs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "arma-rs" description = "Arma 3 Extensions in Rust" -version = "1.11.3" +version = "1.11.4" edition = "2021" authors = ["Brett Mayson"] repository = "https://github.com/brettmayson/arma-rs" diff --git a/arma-rs/src/lib.rs b/arma-rs/src/lib.rs index b5147e4..f35cce3 100644 --- a/arma-rs/src/lib.rs +++ b/arma-rs/src/lib.rs @@ -359,7 +359,7 @@ impl ExtensionBuilder { #[cfg(all(not(windows), not(debug_assertions)))] let request_context = { let handle = - unsafe { libc::dlopen(std::ptr::null(), libc::RTLD_LAZY | libc::RTLD_NOLOAD) }; + unsafe { libc::dlopen(std::ptr::null(), libc::RTLD_NOLOAD) }; if handle.is_null() { panic!("Failed to open handle to current process"); }