diff options
author | David Tardon <dtardon@redhat.com> | 2012-03-07 12:15:40 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-03-07 14:01:25 +0100 |
commit | 1ee529445b75c259db5c671cb1374094d1eb0985 (patch) | |
tree | f103b3e72af008827ee41c2bc7bc1de9bd473960 /sal/osl | |
parent | 8c986d3eb37ad483b9b6021deba4c8795e202854 (diff) |
WaE: missing braces around initializer
Diffstat (limited to 'sal/osl')
-rw-r--r-- | sal/osl/w32/file.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/w32/file.cxx b/sal/osl/w32/file.cxx index e581a11bd82d..341947fd6eec 100644 --- a/sal/osl/w32/file.cxx +++ b/sal/osl/w32/file.cxx @@ -688,7 +688,7 @@ SAL_CALL osl_createFileHandleFromOSHandle ( pImpl->m_state |= FileHandle_Impl::STATE_SEEKABLE; /* init current size */ - LARGE_INTEGER uSize = { 0, 0 }; + LARGE_INTEGER uSize = { { 0, 0 } }; (void) ::GetFileSizeEx(hFile, &uSize); pImpl->m_size = (sal::static_int_cast<sal_uInt64>(uSize.HighPart) << 32) + uSize.LowPart; } |