diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-05-26 09:58:57 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-05-26 09:58:57 +0200 |
commit | 5da96cd1eb4ade7e7a2742a97fc1c08ca0accf1b (patch) | |
tree | 7b9122192f6360c0f0930d6988201ef9b4af3b58 | |
parent | 2f8185d53f678cea19ff02cc228c5977e82f2c00 (diff) |
Changed the type of 'whenbest'
-rw-r--r-- | FICS/playerdb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FICS/playerdb.h b/FICS/playerdb.h index 5d1a55d..fcd4879 100644 --- a/FICS/playerdb.h +++ b/FICS/playerdb.h @@ -60,8 +60,9 @@ typedef struct _statistics { double sterr; - int num, win, los, dra, rating, best, whenbest; + int num, win, los, dra, rating, best; time_t ltime; + time_t whenbest; } statistics; #define PEND_MATCH 0 |