Skip to content

Commit

Permalink
Auto merge of #3300 - chenx97:macro-cosmetics, r=JohnTitor
Browse files Browse the repository at this point in the history
style fix for in-macro code

Since rustfmt ignores it
  • Loading branch information
bors committed Jul 12, 2023
2 parents 9cbdd4d + ecff416 commit fab4a56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/unix/linux_like/linux/gnu/mod.rs
Expand Up @@ -958,9 +958,9 @@ pub const KEYCTL_SUPPORTS_DECRYPT: u32 = 0x02;
pub const KEYCTL_SUPPORTS_SIGN: u32 = 0x04;
pub const KEYCTL_SUPPORTS_VERIFY: u32 = 0x08;
cfg_if! {
if #[cfg(not(any(target_arch="mips",
target_arch="mips32r6",
target_arch="mips64",
if #[cfg(not(any(target_arch = "mips",
target_arch = "mips32r6",
target_arch = "mips64",
target_arch = "mips64r6")))] {
pub const KEYCTL_MOVE: u32 = 30;
pub const KEYCTL_CAPABILITIES: u32 = 31;
Expand Down

0 comments on commit fab4a56

Please sign in to comment.