summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}