diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-09-19 08:29:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-09-19 08:29:38 +0200 |
commit | b4278534125b0d73695146df4ede32273e2afbfb (patch) | |
tree | 4be9201aa0cc56e293984afd64de1b435dea0da1 /tools | |
parent | bef91f7e5f3121dced360d4b90a09c334f12e56e (diff) |
-Werror,-Wmissing-field-initializers (clang-cl)
Change-Id: I049c5569344ccf74726ec429efefdd9119406488
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/datetime/ttime.cxx | 2 |
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; |