Skip to content

Commit a789e12

Browse files
authored
Fix unannotated fallthrough. (#2007)
1 parent fd9ca7a commit a789e12

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Pcap++/src/PcapLiveDevice.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,14 +487,17 @@ namespace pcpp
487487
case PCPP_IN:
488488
{
489489
PCPP_LOG_DEBUG("Only incoming traffics will be captured");
490+
break;
490491
}
491492
case PCPP_OUT:
492493
{
493494
PCPP_LOG_DEBUG("Only outgoing traffics will be captured");
495+
break;
494496
}
495497
default:
496498
{
497499
PCPP_LOG_DEBUG("Both incoming and outgoing traffics will be captured");
500+
break;
498501
}
499502
}
500503

0 commit comments

Comments
 (0)