Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mutexlox-signal authored and kinetiknz committed Oct 10, 2024
1 parent 9ea926b commit f70ef45
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/backend/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2647,7 +2647,9 @@ impl ContextOps for AudioUnitContext {
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"audiounit-rust\0".as_ptr() as *const _) }
unsafe {
CStr::from_ptr(b"audiounit-rust\0".as_ptr() as *const _)
}
}
#[cfg(target_os = "ios")]
fn max_channel_count(&mut self) -> Result<u32> {
Expand Down

0 comments on commit f70ef45

Please sign in to comment.