Pass fmt check

This commit is contained in:
Wenqing Zong 2024-03-20 16:36:08 +00:00
parent 384ddd77a5
commit a026af1281

View file

@ -557,7 +557,9 @@ impl<'a> WhisperState<'a> {
/// `bool whisper_full_get_segment_speaker_turn_next_from_state(struct whisper_state * state, int i_segment)`
pub fn full_get_segment_speaker_turn_next(&mut self, i_segment: c_int) -> bool {
unsafe {
whisper_rs_sys::whisper_full_get_segment_speaker_turn_next_from_state(self.ptr, i_segment)
whisper_rs_sys::whisper_full_get_segment_speaker_turn_next_from_state(
self.ptr, i_segment,
)
}
}
}