diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-03-29 12:08:09 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-03-29 12:08:09 +0100 |
commit | d761d5e219d745c10997c4accfbfc9eb5717d0e8 (patch) | |
tree | 58f93d9808684846e9e902fbcf2dbee89321b02f /basic/source/runtime | |
parent | 3e71c1068a4691f19bef94b225770488aaa80390 (diff) |
error: no matching function for call to..
Change-Id: I4792f9deb162c5e7bde16e54a55f80a83eb90b70
Diffstat (limited to 'basic/source/runtime')
-rw-r--r-- | basic/source/runtime/iosys.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/runtime/iosys.cxx b/basic/source/runtime/iosys.cxx index c4bd9132d401..940d6d5a4264 100644 --- a/basic/source/runtime/iosys.cxx +++ b/basic/source/runtime/iosys.cxx @@ -359,14 +359,14 @@ OslStream::~OslStream() sal_Size OslStream::GetData(void* pData, sal_Size nSize) { - sal_Size nBytesRead = nSize; + sal_uInt64 nBytesRead = nSize; maFile.read( pData, nBytesRead, nBytesRead ); return nBytesRead; } sal_Size OslStream::PutData(const void* pData, sal_Size nSize) { - sal_Size nBytesWritten; + sal_uInt64 nBytesWritten; maFile.write( pData, nSize, nBytesWritten ); return nBytesWritten; } |