From c2f366873f2a3b423265a1ebfdb5e1547d49f3e5 Mon Sep 17 00:00:00 2001 From: Release Engineers Date: Mon, 31 Aug 2009 07:25:18 +0000 Subject: [PATCH] #i10000# fix for Win32 warning --- unoxml/source/rdf/librdf_repository.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unoxml/source/rdf/librdf_repository.cxx b/unoxml/source/rdf/librdf_repository.cxx index c9d501756167..c42887a9cf9f 100644 --- a/unoxml/source/rdf/librdf_repository.cxx +++ b/unoxml/source/rdf/librdf_repository.cxx @@ -966,7 +966,7 @@ throw (uno::RuntimeException, lang::IllegalArgumentException, // UGLY: if only that redland junk could read streams... const sal_Int64 sz( xSeekable.is() ? xSeekable->getLength() : 1 << 20 ); // exceptions are propagated - i_xInStream->readBytes(buf, sz); + i_xInStream->readBytes( buf, static_cast( sz ) ); const boost::shared_ptr pStream( librdf_parser_parse_counted_string_as_stream(pParser.get(), reinterpret_cast(buf.getConstArray()),