From c5a82304cf3ce4460df35a8cd0073c22bf0e5c64 Mon Sep 17 00:00:00 2001 From: Alex Macleod Date: Mon, 29 Aug 2022 12:07:59 +0000 Subject: [PATCH] Fix `suspicious_to_owned` test when `c_char` is `u8` --- tests/ui/suspicious_to_owned.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ui/suspicious_to_owned.rs b/tests/ui/suspicious_to_owned.rs index a90e78a0ea03..cba21bf4a93a 100644 --- a/tests/ui/suspicious_to_owned.rs +++ b/tests/ui/suspicious_to_owned.rs @@ -2,12 +2,12 @@ #![warn(clippy::implicit_clone)] #![allow(clippy::redundant_clone)] use std::borrow::Cow; -use std::ffi::CStr; +use std::ffi::{c_char, CStr}; fn main() { let moo = "Moooo"; let c_moo = b"Moooo\0"; - let c_moo_ptr = c_moo.as_ptr() as *const i8; + let c_moo_ptr = c_moo.as_ptr() as *const c_char; let moos = ['M', 'o', 'o']; let moos_vec = moos.to_vec();