Skip to content

Commit

Permalink
fix build release
Browse files Browse the repository at this point in the history
  • Loading branch information
pythops committed Oct 10, 2024
1 parent b7f42d9 commit 33fc05d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oryx-tui/src/ebpf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ pub fn load_ingress(
};

#[cfg(not(debug_assertions))]
let mut bpf = match Bpf::load(include_bytes_aligned!(
let mut bpf = match Ebpf::load(include_bytes_aligned!(
"../../target/bpfel-unknown-none/release/oryx"
)) {
Ok(v) => v,
Expand Down Expand Up @@ -427,7 +427,7 @@ pub fn load_egress(
};

#[cfg(not(debug_assertions))]
let mut bpf = match Bpf::load(include_bytes_aligned!(
let mut bpf = match Ebpf::load(include_bytes_aligned!(
"../../target/bpfel-unknown-none/release/oryx"
)) {
Ok(v) => v,
Expand Down

0 comments on commit 33fc05d

Please sign in to comment.