From c985d8846d6950cc9ddcb679365cf4b916b8ea1f Mon Sep 17 00:00:00 2001 From: curt Date: Sat, 20 Apr 2002 20:53:54 +0000 Subject: [PATCH] tweak. --- simgear/timing/timestamp.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/timing/timestamp.cxx b/simgear/timing/timestamp.cxx index 7c8cffa9..3102732c 100644 --- a/simgear/timing/timestamp.cxx +++ b/simgear/timing/timestamp.cxx @@ -105,7 +105,7 @@ void SGTimeStamp::stamp() { // increment the time stamp by the number of microseconds (usec) SGTimeStamp operator + (const SGTimeStamp& t, const long& m) { -#ifdef WIN32 +#if defined( WIN32 ) return SGTimeStamp( 0, t.usec + m ); #else return SGTimeStamp( t.seconds + ( t.usec + m ) / 1000000, -- 2.39.2