From 5e948f1f8540286fc88a474020303d66cf1a8009 Mon Sep 17 00:00:00 2001 From: Dimitar Krastev Date: Mon, 27 Oct 2025 18:45:36 +0200 Subject: [PATCH] Fix unannotated fallthrough. --- Pcap++/src/PcapLiveDevice.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Pcap++/src/PcapLiveDevice.cpp b/Pcap++/src/PcapLiveDevice.cpp index 42244a74cd..ec8969a176 100644 --- a/Pcap++/src/PcapLiveDevice.cpp +++ b/Pcap++/src/PcapLiveDevice.cpp @@ -487,14 +487,17 @@ namespace pcpp case PCPP_IN: { PCPP_LOG_DEBUG("Only incoming traffics will be captured"); + break; } case PCPP_OUT: { PCPP_LOG_DEBUG("Only outgoing traffics will be captured"); + break; } default: { PCPP_LOG_DEBUG("Both incoming and outgoing traffics will be captured"); + break; } }