diff options
Diffstat (limited to 'plugins/SecureIM/src/gettime.cpp')
-rw-r--r-- | plugins/SecureIM/src/gettime.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/SecureIM/src/gettime.cpp b/plugins/SecureIM/src/gettime.cpp index 76ec52ede8..4da5fe98c8 100644 --- a/plugins/SecureIM/src/gettime.cpp +++ b/plugins/SecureIM/src/gettime.cpp @@ -9,9 +9,9 @@ const static ULONGLONG ix_epoch = 116444736000000000; DWORD gettime(void)
{
-
ULONGLONG diff_100_nsec;
- union {
+ union
+ {
FILETIME f;
ULARGE_INTEGER u;
} now;
@@ -22,5 +22,3 @@ DWORD gettime(void) return (DWORD)(diff_100_nsec / div_100_nsec);
}
-
-// EOF
|