From: Victor Julien Date: Tue, 11 Feb 2025 11:57:03 +0000 (+0100) Subject: detect: don't cast void on void func X-Git-Tag: suricata-8.0.0-beta1~458 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce948040a111c38f75fa2642893ec1b5cf053de5;p=thirdparty%2Fsuricata.git detect: don't cast void on void func --- diff --git a/src/detect.c b/src/detect.c index f7ef724fde..23b31af4b0 100644 --- a/src/detect.c +++ b/src/detect.c @@ -1863,7 +1863,7 @@ static void DetectFlow(ThreadVars *tv, } /* see if the packet matches one or more of the sigs */ - (void)DetectRun(tv, de_ctx, det_ctx, p); + DetectRun(tv, de_ctx, det_ctx, p); }