Skip to content

Commit f70ef45

Browse files
mutexlox-signalkinetiknz
authored andcommitted
cargo fmt
1 parent 9ea926b commit f70ef45

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/backend/mod.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -2647,7 +2647,9 @@ impl ContextOps for AudioUnitContext {
26472647
fn backend_id(&mut self) -> &'static CStr {
26482648
// https://github.com/rust-lang/rust-clippy/issues/13531
26492649
#[allow(clippy::manual_c_str_literals)]
2650-
unsafe { CStr::from_ptr(b"audiounit-rust\0".as_ptr() as *const _) }
2650+
unsafe {
2651+
CStr::from_ptr(b"audiounit-rust\0".as_ptr() as *const _)
2652+
}
26512653
}
26522654
#[cfg(target_os = "ios")]
26532655
fn max_channel_count(&mut self) -> Result<u32> {

0 commit comments

Comments
 (0)