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 | |
parent | c40b2865930bac42f1b1857c4f4eb13fe3dc4cd9 (diff) |
Changed the type of 'startuptime' to 'time_t'
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/command.c | 2 | ||||
-rw-r--r-- | FICS/command.h | 2 |
2 files changed, 2 insertions, 2 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; diff --git a/FICS/command.h b/FICS/command.h index c4e5648..4d80035 100644 --- a/FICS/command.h +++ b/FICS/command.h @@ -50,7 +50,7 @@ extern char *usage_dir[NUM_LANGS]; extern char *hadmin_handle; -extern int startuptime; +extern time_t startuptime; extern char fics_hostname[81]; extern int player_high; extern int game_high; |