summaryrefslogtreecommitdiffstats
path: root/sal
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-03-07 12:15:40 +0100
committerDavid Tardon <dtardon@redhat.com>2012-03-07 14:01:25 +0100
commit1ee529445b75c259db5c671cb1374094d1eb0985 (patch)
treef103b3e72af008827ee41c2bc7bc1de9bd473960 /sal
parentWaE: "NOMINMAX" redefined (diff)
downloadcore-1ee529445b75c259db5c671cb1374094d1eb0985.tar.gz
core-1ee529445b75c259db5c671cb1374094d1eb0985.zip
WaE: missing braces around initializer
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/w32/file.cxx2
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;
}