detect-flowbits: fix misleading indentation

detect-flowbits.c: In function ‘FlowBitsTestSig02’:
detect-flowbits.c:475:4: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
    if(error_count == 5)
    ^~
detect-flowbits.c:478:5: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the ‘if’
     SigGroupBuild(de_ctx);
     ^~~~~~~~~~~~~
pull/2205/head
Jason Ish 9 years ago committed by Victor Julien
parent a975fdcfeb
commit e55334fb37

@ -472,8 +472,8 @@ static int FlowBitsTestSig02(void)
error_count++;
}
if(error_count == 5)
goto end;
if(error_count == 5)
goto end;
SigGroupBuild(de_ctx);
DetectEngineThreadCtxInit(&th_v, (void *)de_ctx, (void *)&det_ctx);

Loading…
Cancel
Save