diff options
author | Philipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM> | 2011-02-03 11:28:51 +0100 |
---|---|---|
committer | Philipp Lohmann [pl] <Philipp.Lohmann@Oracle.COM> | 2011-02-03 11:28:51 +0100 |
commit | 5d1335e1f02b0ebaee310d811214b18e8a276698 (patch) | |
tree | ca14b9a8a01282d917dcba715cd3ca094e9f83e4 /sdext | |
parent | 680b4e9038d746c50cc88b66ae535d0b39dbddd9 (diff) |
vcl119: #163136# fix warnings
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/pdfimport/pdfparse/pdfparse.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sdext/source/pdfimport/pdfparse/pdfparse.cxx b/sdext/source/pdfimport/pdfparse/pdfparse.cxx index b3ffa64427dd..0e54005c6bd0 100644 --- a/sdext/source/pdfimport/pdfparse/pdfparse.cxx +++ b/sdext/source/pdfimport/pdfparse/pdfparse.cxx @@ -572,7 +572,7 @@ PDFEntry* PDFReader::read( const char* pBuffer, unsigned int nLen ) aInfo.stop, pBuffer, aInfo.stop - pBuffer, aInfo.hit ? "true" : "false", aInfo.full ? "true" : "false", - aInfo.length ); + (int)aInfo.length ); #endif } catch( parser_error<const char*, const char*>& rError ) @@ -650,7 +650,7 @@ PDFEntry* PDFReader::read( const char* pFileName ) aInfo.stop - file_start, aInfo.hit ? "true" : "false", aInfo.full ? "true" : "false", - aInfo.length ); + (int)aInfo.length ); #endif } catch( parser_error< const char*, file_iterator<> >& rError ) |