diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2023-03-08 20:49:06 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2023-03-09 06:20:54 +0000 |
commit | 5eae429d026b3f502e40265376772e2188239fb5 (patch) | |
tree | 8edfc8d18460a5b14b2cbdc01e68c6fd05c5c20e /package | |
parent | 082d009b6a156faa74c9966b0dffc5fa6ce22287 (diff) |
Fix typo
Change-Id: I4c48c988667ffd9221a0e226ab9c35e1e857e9d5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148489
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'package')
-rw-r--r-- | package/source/zipapi/Deflater.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/source/zipapi/Deflater.cxx b/package/source/zipapi/Deflater.cxx index 2c66253fd0ed..9439e3f56bcb 100644 --- a/package/source/zipapi/Deflater.cxx +++ b/package/source/zipapi/Deflater.cxx @@ -83,7 +83,7 @@ sal_Int32 Deflater::doDeflateBytes (uno::Sequence < sal_Int8 > &rBuffer, sal_Int #else nResult = z_deflate(pStream.get(), bFinish ? Z_FINISH : Z_NO_FLUSH); #endif - // total_in / total_out may stored only in 32bit, and can owerflow during deflate + // total_in / total_out may stored only in 32bit, and can overflow during deflate // 1 deflate call, uncompress only a few data, so only 1 overflow can happen at once. if (pStream->total_in < nLastTotalIn) { |