aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2024-11-23 21:02:26 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2024-11-23 21:02:26 +0100
commitc64bb06bceb3a41396ea1d64084e2f1b18915abf (patch)
treedf3e800285bed7932a9e2b96c2f99f8195730a1b
parent3a80ed6a926d2843f183ce68b2ff54387b486891 (diff)
movesToString: changed the type of 'curTime'
-rw-r--r--FICS/gamedb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/gamedb.c b/FICS/gamedb.c
index ffdeebc..9bb8b23 100644
--- a/FICS/gamedb.c
+++ b/FICS/gamedb.c
@@ -553,7 +553,7 @@ movesToString(int g, int pgn)
char tmp[160] = { '\0' };
int i, col;
int wr, br;
- unsigned int curTime;
+ time_t curTime;
wr = garray[g].white_rating;
br = garray[g].black_rating;