diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-12-04 20:22:27 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-12-05 10:05:40 +0100 |
commit | 5dc9ae616cae7d37e0e3624be9d87bb61900e272 (patch) | |
tree | fbbd19ea1c3d9711ecf9c4791000e6f39ca38f63 /jvmfwk | |
parent | 074bee8a968e479508f511061f3b8ad2d6e48c59 (diff) |
Fix typo
Change-Id: I8f853990d38dd6f5dd1dd521f022e9874e1924c8
Reviewed-on: https://gerrit.libreoffice.org/84485
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'jvmfwk')
-rw-r--r-- | jvmfwk/source/fwkutil.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jvmfwk/source/fwkutil.cxx b/jvmfwk/source/fwkutil.cxx index e14057999208..a52013871340 100644 --- a/jvmfwk/source/fwkutil.cxx +++ b/jvmfwk/source/fwkutil.cxx @@ -128,7 +128,7 @@ rtl::ByteSequence decodeBase16(const rtl::ByteSequence& data) static const char decodingTable[] = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'}; sal_Int32 lenData = data.getLength(); - sal_Int32 lenBuf = lenData / 2; //always divisable by two + sal_Int32 lenBuf = lenData / 2; //always divisible by two std::unique_ptr<unsigned char[]> pBuf(new unsigned char[lenBuf]); const sal_Int8* pData = data.getConstArray(); for (sal_Int32 i = 0; i < lenBuf; i++) |