From: divverent Date: Sat, 27 Feb 2010 18:02:50 +0000 (+0000) Subject: shut up a (in this case wrong) warning about possibly uninitialized variable X-Git-Tag: xonotic-v0.1.0preview~230^2~446 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=1a2e0eb0507761bef44937588ae65a8591aca9a1;p=xonotic%2Fdarkplaces.git shut up a (in this case wrong) warning about possibly uninitialized variable git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10023 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/sys_shared.c b/sys_shared.c index 43fda3c9..a787038d 100644 --- a/sys_shared.c +++ b/sys_shared.c @@ -374,7 +374,7 @@ double Sys_DoubleTime(void) void Sys_Sleep(int microseconds) { - double t; + double t = 0; if(sys_usenoclockbutbenchmark.integer) { benchmark_time += microseconds;