diff --git a/src/detect.c b/src/detect.c index 9747e306da83..5c229e102ef3 100644 --- a/src/detect.c +++ b/src/detect.c @@ -145,15 +145,12 @@ static void DetectRun(ThreadVars *th_v, SCReturn; } -static void DetectRunPostMatch(ThreadVars *tv, - DetectEngineThreadCtx *det_ctx, Packet *p, - const Signature *s -) +static void DetectRunPostMatch(ThreadVars *tv, DetectEngineThreadCtx *det_ctx, + Packet *p, const Signature *s) { /* run the packet match functions */ const SigMatchData *smd = s->sm_arrays[DETECT_SM_LIST_POSTMATCH]; - if (smd != NULL) -{ + if (smd != NULL) { KEYWORD_PROFILING_SET_LIST(det_ctx, DETECT_SM_LIST_POSTMATCH); SCLogDebug("running match functions, sm %p", smd);