summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2020-02-05 10:33:35 +0100
committerJulien Nabet <serval2412@yahoo.fr>2020-02-05 11:23:27 +0100
commitb7399c4290b2b2d3fa9c81b2c1341290c1b9567a (patch)
treec3e56ac352e52b24f09803f87b87c4824055ef6c /filter
parent1b2c0593236a934ad95192120674c962cf11e002 (diff)
Fix typo
Change-Id: Id16c1fe3fef0149a881f0ea684141e4e198892ab Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87999 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/escherex.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/source/msfilter/escherex.cxx b/filter/source/msfilter/escherex.cxx
index bc2e1f472e17..c01280a48232 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -5011,7 +5011,7 @@ void EscherEx::InsertAtCurrentPos( sal_uInt32 nBytes )
offset += nBytes;
}
nSource = mpOutStrm->TellEnd();
- nToCopy = nSource - nCurPos; // increase the size of the tream by nBytes
+ nToCopy = nSource - nCurPos; // increase the size of the stream by nBytes
std::unique_ptr<sal_uInt8[]> pBuf(new sal_uInt8[ 0x40000 ]); // 256KB Buffer
while ( nToCopy )
{