From 67429e523f63cb72a444cab8a5c3dad87ed82690 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Tue, 29 Jun 2010 19:05:16 +0200 Subject: [PATCH] Fix compiler warning about incomplete prototype. --- src/detect.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detect.h b/src/detect.h index 582a0c3db9..d40d25605d 100644 --- a/src/detect.h +++ b/src/detect.h @@ -784,7 +784,7 @@ void SigRegisterTests(void); void TmModuleDetectRegister (void); int SigGroupBuild(DetectEngineCtx *); -int SigGroupCleanup(); +int SigGroupCleanup (DetectEngineCtx *de_ctx); void SigAddressPrepareBidirectionals (DetectEngineCtx *); int SigLoadSignatures (DetectEngineCtx *, char *);