Skip to content

Commit

Permalink
use arm
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Phillips <[email protected]>
  • Loading branch information
rphillips committed Aug 4, 2022
1 parent 9959e87 commit e67fa94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conmon-rs/server/src/oom_watcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use tracing::{debug, debug_span, error, Instrument};
pub const CGROUP2_SUPER_MAGIC: FsType = FsType(libc::CGROUP2_SUPER_MAGIC as u64);
#[cfg(any(all(target_os = "linux", target_arch = "s390x", not(target_env = "musl"))))]
pub const CGROUP2_SUPER_MAGIC: FsType = FsType(libc::CGROUP2_SUPER_MAGIC as u32);
#[cfg(any(all(target_os = "linux", target_arch = "armhfp", not(target_env = "musl"))))]
#[cfg(any(all(target_os = "linux", target_arch = "arm", not(target_env = "musl"))))]
pub const CGROUP2_SUPER_MAGIC: FsType = FsType(libc::CGROUP2_SUPER_MAGIC as i32);
#[cfg(any(all(
target_os = "linux",
Expand Down

0 comments on commit e67fa94

Please sign in to comment.