]> git.mxchange.org Git - simgear.git/blobdiff - simgear/timing/timestamp.cxx
Frederic Bouvier:
[simgear.git] / simgear / timing / timestamp.cxx
index 7c8cffa9f9662b29993ec3d99e0070932bebe987..af4c7ea217c06a682e87ce18fe1cd3b15d3f23db 100644 (file)
@@ -5,7 +5,7 @@
 
 // Written by Curtis Olson, started December 1998.
 //
-// Copyright (C) 1998  Curtis L. Olson  - curt@flightgear.org
+// Copyright (C) 1998  Curtis L. Olson  - http://www.flightgear.org/~curt
 //
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
@@ -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,