summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/source/datetime/ttime.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/datetime/ttime.cxx b/tools/source/datetime/ttime.cxx
index d02cf20ac257..cf8108306e06 100644
--- a/tools/source/datetime/ttime.cxx
+++ b/tools/source/datetime/ttime.cxx
@@ -422,7 +422,7 @@ sal_uInt64 tools::Time::GetSystemTicks()
#ifdef _WIN32
static LARGE_INTEGER initPerformanceFrequency()
{
- LARGE_INTEGER nTicksPerSecond = { 0 };
+ LARGE_INTEGER nTicksPerSecond = { 0, 0 };
if (!QueryPerformanceFrequency(&nTicksPerSecond))
nTicksPerSecond.QuadPart = 0;
return nTicksPerSecond;