diff options
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/command.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/FICS/command.c b/FICS/command.c index 48c190f..2a7812d 100644 --- a/FICS/command.c +++ b/FICS/command.c @@ -1219,10 +1219,10 @@ PUBLIC int process_heartbeat(int *fd) { time_t now = time(NULL); - int time_since_last; - static int last_comfile = 0; - static int last_space = 0; - static int lastcalled = 0; + time_t time_since_last; + static time_t last_comfile = 0; + static time_t last_space = 0; + static time_t lastcalled = 0; if (lastcalled == 0) time_since_last = 0; |