$OpenBSD$ --- plugins/jheretic/src/in_lude.c.orig Wed Nov 9 02:37:59 2011 +++ plugins/jheretic/src/in_lude.c Wed Nov 9 02:38:24 2011 @@ -97,7 +97,7 @@ static gametype_t gameType; static int cnt; -static int time; +static int ttime; static int hours; static int minutes; static int seconds; @@ -257,12 +257,12 @@ void IN_InitStats(void) } } - time = mapTime / 35; - hours = time / 3600; - time -= hours * 3600; - minutes = time / 60; - time -= minutes * 60; - seconds = time; + ttime = mapTime / 35; + hours = ttime / 3600; + ttime -= hours * 3600; + minutes = ttime / 60; + ttime -= minutes * 60; + seconds = ttime; if(!IS_NETGAME) {