aboutsummaryrefslogtreecommitdiff
path: root/windows/msvc
diff options
context:
space:
mode:
authorDamien George2017-07-19 13:12:10 +1000
committerDamien George2017-07-19 13:12:10 +1000
commit761e4c7ff62896c7d8f8c3dfc3cc98a4cc4f2f6f (patch)
treeca794059e302b1947125d36f64c667acdde6ddbe /windows/msvc
parentc972c60dbe72d7448faff7f631dfb798b694093e (diff)
all: Remove trailing spaces, per coding conventions.
Diffstat (limited to 'windows/msvc')
-rw-r--r--windows/msvc/gettimeofday.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/msvc/gettimeofday.c b/windows/msvc/gettimeofday.c
index 363d59d7b..6d7264ae7 100644
--- a/windows/msvc/gettimeofday.c
+++ b/windows/msvc/gettimeofday.c
@@ -43,7 +43,7 @@ int gettimeofday(struct timeval *tp, struct timezone *tz) {
// to microseconds
ft.tm /= 10;
-
+
// convert to unix format
// number of microseconds intervals between the 1st january 1601 and the 1st january 1970 (369 years + 89 leap days)
const unsigned __int64 deltaEpoch = 11644473600000000ull;