diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-17 19:24:36 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-17 19:24:36 +0100 |
commit | 06b7ca203d9ac5e765bcdd6caa5e1a480f4f9a79 (patch) | |
tree | f10aaa8907d0243dfba00de3fa2fa80eed6d3897 /FICS/command.c | |
parent | c40b2865930bac42f1b1857c4f4eb13fe3dc4cd9 (diff) |
Changed the type of 'startuptime' to 'time_t'
Diffstat (limited to 'FICS/command.c')
-rw-r--r-- | FICS/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/command.c b/FICS/command.c index 46bd511..753ae9d 100644 --- a/FICS/command.c +++ b/FICS/command.c @@ -67,7 +67,7 @@ PUBLIC char *hadmin_handle = HADMINHANDLE; char *hadmin_email = HADMINEMAIL; char *reg_addr = REGMAIL; -PUBLIC int startuptime; +PUBLIC time_t startuptime; PUBLIC char fics_hostname[81]; PUBLIC int player_high; PUBLIC int game_high; |