From 33fc05dfe5b11c86e506b6eca6dfce0699d66b67 Mon Sep 17 00:00:00 2001 From: Badr Date: Thu, 10 Oct 2024 21:16:20 +0200 Subject: [PATCH] fix build release --- oryx-tui/src/ebpf.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oryx-tui/src/ebpf.rs b/oryx-tui/src/ebpf.rs index 60147f1..54d53ad 100644 --- a/oryx-tui/src/ebpf.rs +++ b/oryx-tui/src/ebpf.rs @@ -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, @@ -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,