From: Mike Stepanek (mstepane) Date: Wed, 12 Jan 2022 17:22:12 +0000 (+0000) Subject: Pull request #3232: wizard: remove extra semicolon X-Git-Tag: 3.1.21.0~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=969bf55661cb2a941c4ac0363350252d4397539a;p=thirdparty%2Fsnort3.git 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 --- 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);