Skip to content

Commit

Permalink
fix(napi) use c_char instead of hardcoding i8 to avoid incompatibilit…
Browse files Browse the repository at this point in the history
…y with aarch64 (denoland#17458)

Quick one, compatibility fix for [aarch64
builds](https://github.com/LukeChannings/deno-arm64).
  • Loading branch information
LukeChannings committed Jan 17, 2023
1 parent f2a5f6d commit 1a792f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test_napi/src/typedarray.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use napi_sys::TypedarrayType;
use napi_sys::ValueType::napi_number;
use napi_sys::ValueType::napi_object;
use napi_sys::*;
use std::os::raw::c_char;
use std::ptr;

extern "C" fn test_multiply(
Expand Down Expand Up @@ -103,7 +104,8 @@ extern "C" fn test_multiply(
assert_napi_ok!(napi_throw_error(
env,
ptr::null(),
"Typed array was of a type not expected by test.".as_ptr() as *const i8,
"Typed array was of a type not expected by test.".as_ptr()
as *const c_char,
));
return ptr::null_mut();
}
Expand Down

0 comments on commit 1a792f8

Please sign in to comment.