diff options
Diffstat (limited to 'include/svl/filerec.hxx')
-rw-r--r-- | include/svl/filerec.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svl/filerec.hxx b/include/svl/filerec.hxx index 3cc9248a8476..b7aca769a8bf 100644 --- a/include/svl/filerec.hxx +++ b/include/svl/filerec.hxx @@ -601,7 +601,7 @@ inline SfxMiniRecordWriter::SfxMiniRecordWriter( SvStream* pStream, sal_uInt8 nT DBG(_nStartPos = pStream->Tell()); DBG( DbgOutf( "SfxFileRec: writing record to %ul", _nStartPos ) ); - *pStream << ( ( nTag << 24 ) | nSize ); + pStream->WriteUInt32( ( nTag << 24 ) | nSize ); } /** The destructor closes the record automatically if not done earlier */ |