And another...

This commit is contained in:
Nolan Darilek 2022-03-10 13:00:17 -06:00
parent 6aacce2d73
commit be9e4592ec
1 changed files with 1 additions and 1 deletions

View File

@ -413,7 +413,7 @@ impl Connection {
} }
pub fn set_voice_type(&self, voice_type: VoiceType) -> Result<(), Error> { pub fn set_voice_type(&self, voice_type: VoiceType) -> Result<(), Error> {
#[cfg(feature = "0.10.0")] #[cfg(feature = "0.10")]
let v = unsafe { spd_set_voice_type(*self.0, voice_type as i32) }; let v = unsafe { spd_set_voice_type(*self.0, voice_type as i32) };
#[cfg(not(feature = "0.10"))] #[cfg(not(feature = "0.10"))]
let v = unsafe { spd_set_voice_type(*self.0, voice_type as u32) }; let v = unsafe { spd_set_voice_type(*self.0, voice_type as u32) };