diff options
-rw-r--r-- | FICS/ratings.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/FICS/ratings.c b/FICS/ratings.c index 713d144..4178c36 100644 --- a/FICS/ratings.c +++ b/FICS/ratings.c @@ -587,16 +587,14 @@ PUBLIC void rating_sterr_delta(int p1, int p2, int type, int gtime, int result, *newsterr = (double) sigma; } -/* vek: Next is for when we want just the delta, and not the sigma. */ - -PUBLIC int rating_delta(int p1, int p2, int type, int result, int gtime) +PUBLIC int +rating_delta(int p1, int p2, int type, int result, int gtime) { - int delta; - double sigma; - - rating_sterr_delta(p1, p2, type, gtime, result, &delta, &sigma); - return (delta); + int delta; + double sigma; + rating_sterr_delta(p1, p2, type, gtime, result, &delta, &sigma); + return delta; } PUBLIC int |