summaryrefslogtreecommitdiff
path: root/plugins/SecureIM/src/gettime.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2014-07-08 15:49:18 +0000
committerGeorge Hazan <george.hazan@gmail.com>2014-07-08 15:49:18 +0000
commit62ab18a9fda2f19c08ae63a14c7a262ca62f0cce (patch)
tree821876224af8cb3e3f4b9b29ea3237212cde37e7 /plugins/SecureIM/src/gettime.cpp
parent19a5e6f0b9c3232933132dbaa9420aecef497336 (diff)
code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@9732 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/src/gettime.cpp')
-rw-r--r--plugins/SecureIM/src/gettime.cpp6
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