Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions netwatch/src/interfaces/bsd/freebsd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@ mod arm {
}

// Hardcoded based on the generated values here: https://cs.opensource.google/go/x/net/+/master:route/zsys_freebsd_arm.go
#[cfg(target_arch = "aarch64")]
#[cfg(any(target_arch = "aarch64", target_arch = "powerpc64", target_arch = "riscv64"))]
pub use self::arm64::*;

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The arm64 module name now seems inappropriate. Otherwise this seems pretty uncontroversial. But fmt check is failing.

#[cfg(target_arch = "aarch64")]
#[cfg(any(target_arch = "aarch64", target_arch = "powerpc64", target_arch = "riscv64"))]
mod arm64 {
pub const SIZEOF_IF_MSGHDRL_FREE_BSD10: usize = 0xb0;
pub const SIZEOF_IFA_MSGHDR_FREE_BSD10: usize = 0x14;
Expand Down
Loading