start adding some clippy lints to Cargo.toml

This commit is contained in:
auronandace
2026-02-06 14:53:59 +00:00
parent cee50ab8c7
commit 473bf0389a
3 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ pub unsafe extern "C" fn pthread_setspecific(key: pthread_key_t, value: *const c
});
//println!("Valid key for pthread_setspecific key {:#0x} value {:p} (was {:p})", key, value, record.data);
record.data = value as *mut c_void;
record.data = value.cast_mut();
0
}