You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ffi): use .cast() instead of as cast for raw pointer conversion
Replace 'as *mut u8' casts with .cast::<u8>() method to fix clippy
warnings about unnecessary casts on ARM architectures.
On ARM, c_char is u8, making the explicit cast unnecessary. Using
.cast::<u8>() is the modern Rust approach and avoids clippy warnings
while maintaining platform compatibility.
0 commit comments