Skip to content

Commit e57296d

Browse files
committed
[watchos] more format fix
1 parent a92030a commit e57296d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

library/unwind/src/libunwind.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ pub const unwinder_private_data_size: usize = 6;
3333
#[cfg(all(target_arch = "arm", not(any(target_os = "ios", target_os = "watchos"))))]
3434
pub const unwinder_private_data_size: usize = 20;
3535

36-
#[cfg(all(any(target_arch = "arm", target_arch="arm64_32"), any(target_os = "ios", target_os = "watchos")))]
36+
#[cfg(all(
37+
any(target_arch = "arm", target_arch = "arm64_32"),
38+
any(target_os = "ios", target_os = "watchos")
39+
))]
3740
pub const unwinder_private_data_size: usize = 5;
3841

3942
#[cfg(all(target_arch = "aarch64", target_pointer_width = "64"))]

0 commit comments

Comments
 (0)