From 969bf55661cb2a941c4ac0363350252d4397539a Mon Sep 17 00:00:00 2001 From: "Mike Stepanek (mstepane)" Date: Wed, 12 Jan 2022 17:22:12 +0000 Subject: [PATCH] Pull request #3232: wizard: remove extra semicolon Merge in SNORT/snort3 from ~YVELYKOZ/snort3:rem_semicol to master Squashed commit of the following: commit a69f31fea7fae9c1367e683da67f01bf46ee7189 Author: Yehor Velykozhon Date: Wed Jan 12 11:51:26 2022 +0200 wizard: remove extra semicolon --- src/service_inspectors/wizard/wizard.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/service_inspectors/wizard/wizard.cc b/src/service_inspectors/wizard/wizard.cc index 67ab959d5..2c0ccb01d 100644 --- a/src/service_inspectors/wizard/wizard.cc +++ b/src/service_inspectors/wizard/wizard.cc @@ -139,7 +139,7 @@ public: StreamSplitter* get_splitter(bool) override; inline bool finished(Wand& w) - { return !w.hex && !w.spell && w.curse_tracker.empty(); }; + { return !w.hex && !w.spell && w.curse_tracker.empty(); } void reset(Wand&, bool tcp, bool c2s); bool cast_spell(Wand&, Flow*, const uint8_t*, unsigned, uint16_t&); bool spellbind(const MagicPage*&, Flow*, const uint8_t*, unsigned); -- 2.47.3