From d761d5e219d745c10997c4accfbfc9eb5717d0e8 Mon Sep 17 00:00:00 2001 From: Matúš Kukan Date: Sat, 29 Mar 2014 12:08:09 +0100 Subject: error: no matching function for call to.. Change-Id: I4792f9deb162c5e7bde16e54a55f80a83eb90b70 --- basic/source/runtime/iosys.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'basic/source') 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; } -- cgit