From 85b013e3f43ff4fa50ced6a23ba336813eaf9320 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 15 May 2025 17:31:48 -0600 Subject: [PATCH] net: Include env.h in pcap.c This file uses the environment but does not include the header file. Update it. Signed-off-by: Simon Glass --- net/pcap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/net/pcap.c b/net/pcap.c index c959e3e4e51..d1d6f705cda 100644 --- a/net/pcap.c +++ b/net/pcap.c @@ -3,6 +3,7 @@ * Copyright 2019 Ramon Fried */ +#include #include #include #include -- 2.47.2