Use pointer::cast instead of as pointer casts

This commit is contained in:
Victor Song 2022-09-30 23:15:53 -04:00
parent 19601267cf
commit 1f409793ae

View File

@ -167,7 +167,7 @@ mod lister {
unsafe { unsafe {
listxattr( listxattr(
c_path.as_ptr(), c_path.as_ptr(),
buf.as_mut_ptr() as *mut c_char, buf.as_mut_ptr().cast::<c_char>(),
bufsize as size_t, bufsize as size_t,
self.c_flags, self.c_flags,
) )
@ -178,7 +178,7 @@ mod lister {
unsafe { unsafe {
getxattr( getxattr(
c_path.as_ptr(), c_path.as_ptr(),
buf.as_ptr() as *const c_char, buf.as_ptr().cast::<c_char>(),
ptr::null_mut(), ptr::null_mut(),
0, 0,
0, 0,