From c6f3465807d81a5c799193d7d0ce19686ecc7a21 Mon Sep 17 00:00:00 2001 From: Albert Larsan <74931857+albertlarsan68@users.noreply.github.com> Date: Wed, 28 Dec 2022 14:23:45 +0100 Subject: [PATCH] Correct compile error on Windows --- src/dylib_flag.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dylib_flag.rs b/src/dylib_flag.rs index dcaba3e..56595c9 100644 --- a/src/dylib_flag.rs +++ b/src/dylib_flag.rs @@ -50,7 +50,7 @@ fn wrap_func_body(func: &str) -> Result { impl RustFunction { #[cfg(not(unix))] pub fn compile(body: &str) -> Result { - Err(anyhow::anyhow!("--verify-fn only works on unix")); + Err(anyhow::anyhow!("--verify-fn only works on unix")) } #[cfg(unix)]