From 200eadf9a1f6465eda286d659c0743a84f4a6b81 Mon Sep 17 00:00:00 2001 From: Lucas Schumacher Date: Sat, 7 Mar 2026 12:36:42 -0500 Subject: [PATCH] Forgot to add Ok(()) --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index ca978b6..303e1e5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -38,6 +38,7 @@ fn pcap_loop(tx: Sender, stream: T) -> Result<()> { data: pkt.data.into(), })?; } + Ok(()) } fn tnc_loop(tx: Sender, mut stream: T) -> Result<()> { let mut buffer = [0_u8; 4096];