From 23a17e0d49181cb8911602945c8fee4ce5a0bca8 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sun, 16 Mar 2025 13:04:11 +0100 Subject: rating_sterr_delta: changed the 4th parameter type --- FICS/ratings.c | 2 +- FICS/ratings.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'FICS') diff --git a/FICS/ratings.c b/FICS/ratings.c index 53ee33a..2850b69 100644 --- a/FICS/ratings.c +++ b/FICS/ratings.c @@ -769,7 +769,7 @@ current_sterr(double s, int t) * ics.onenet.net, if not elsewhere. */ PUBLIC void -rating_sterr_delta(int p1, int p2, int type, int gtime, int result, +rating_sterr_delta(int p1, int p2, int type, time_t gtime, int result, int *deltarating, double *newsterr) { double E, fs2, denominator, GK, w; // Parts of fancy formulas diff --git a/FICS/ratings.h b/FICS/ratings.h index 50b4f56..4cf47a8 100644 --- a/FICS/ratings.h +++ b/FICS/ratings.h @@ -70,7 +70,7 @@ extern void rating_add(int, int); extern void rating_init(void); extern void rating_recalc(void); extern void rating_remove(int, int); -extern void rating_sterr_delta(int, int, int, int, int, int *, double *); +extern void rating_sterr_delta(int, int, int, time_t, int, int *, double *); extern void save_ratings(void); #endif /* _RATINGS_H */ -- cgit v1.2.3