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,