This commit is contained in:
Miriam Zimmerman 2024-10-10 19:14:16 -04:00 коммит произвёл Matthew Gregan
Родитель 558f7fb6cb
Коммит f951e72f26
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -272,7 +272,9 @@ impl ContextOps for PulseContext {
fn backend_id(&mut self) -> &'static CStr {
// https://github.com/rust-lang/rust-clippy/issues/13531
#[allow(clippy::manual_c_str_literals)]
unsafe { CStr::from_ptr(b"pulse-rust\0".as_ptr() as *const _) }
unsafe {
CStr::from_ptr(b"pulse-rust\0".as_ptr() as *const _)
}
}
fn max_channel_count(&mut self) -> Result<u32> {