aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--FICS/command.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/FICS/command.c b/FICS/command.c
index aac633a..4796584 100644
--- a/FICS/command.c
+++ b/FICS/command.c
@@ -904,7 +904,6 @@ PUBLIC int
process_heartbeat(int *fd)
{
int now = time(0);
-// int p;
int time_since_last;
static int last_comfile = 0;
static int last_space = 0;
@@ -916,6 +915,9 @@ process_heartbeat(int *fd)
time_since_last = now - lastcalled;
lastcalled = now;
+ // XXX: unused
+ (void) time_since_last;
+
/*
* Check for timed out connections
*/