fix statdump declaration - bmf - bmf (Bayesian Mail Filter) 0.9.4 fork + patches | |
git clone git://git.codemadness.org/bmf | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 21257a01a467925aaf99a6dbb0b7604a58762473 | |
parent e39d60975a228c3d1e5b9512e082fb8bb1c28001 | |
Author: Hiltjo Posthuma <[email protected]> | |
Date: Fri, 9 Nov 2018 11:17:26 +0100 | |
fix statdump declaration | |
also noticed by Christoph Polcin, thanks! | |
Diffstat: | |
M filt.h | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/filt.h b/filt.h | |
@@ -27,7 +27,7 @@ typedef struct | |
discrim_t* extrema; | |
} stats_t; | |
-void statdump( stats_t* pstat, int fd ); | |
+void statdump( stats_t* pstat, FILE *fp ); | |
void bayesfilt( dbt_t* pglist, dbt_t* pblist, vec_t* pmlist, stats_t* pstats ); | |
bool_t bvec_loadmsg( vec_t* pthis, lex_t* plex, tok_t* ptok ); |