summaryrefslogtreecommitdiff
path: root/oox/source/ole/axbinarywriter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'oox/source/ole/axbinarywriter.cxx')
-rw-r--r--oox/source/ole/axbinarywriter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/ole/axbinarywriter.cxx b/oox/source/ole/axbinarywriter.cxx
index 400e6fbde551..85b3621b2733 100644
--- a/oox/source/ole/axbinarywriter.cxx
+++ b/oox/source/ole/axbinarywriter.cxx
@@ -73,7 +73,7 @@ void AxAlignedOutputStream::pad( sal_Int32 nBytes )
css::uno::Sequence< sal_Int8 > aData( nBytes );
// ok we could be padding with rubbish here, but really that shouldn't matter
// set to 0(s), easier to not get fooled by 0's when looking at
- // binary content......
+ // binary content...
memset( static_cast<void*>( aData.getArray() ), 0, nBytes );
mpOutStrm->writeData( aData );
mnStrmPos = mpOutStrm->tell() - mnWrappedBeginPos;