summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-10-12 20:50:58 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-10-13 09:41:41 +0200
commitd2cf8e960eb352e547350e5aed7a44873697b396 (patch)
tree9180e9a93d68ffb88074ff347cd9a89074894851 /hwpfilter
parentd8a1187fc262ccb4c6489b2ca830f230400c5b82 (diff)
ofz: nLen should be of type 'uint' not tools::Long
Change-Id: If0ea7d2156511b325e866f79bf40e32418f7d658 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123533 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/hwpread.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/hwpfilter/source/hwpread.cxx b/hwpfilter/source/hwpread.cxx
index 31da8c7efde7..c81aaa153797 100644
--- a/hwpfilter/source/hwpread.cxx
+++ b/hwpfilter/source/hwpread.cxx
@@ -121,7 +121,7 @@ bool FieldCode::Read(HWPFile & hwpf)
// book mark(6)
bool Bookmark::Read(HWPFile & hwpf)
{
- tools::Long len;
+ uint len;
hwpf.Read4b(&len, 1);
if (!hwpf.Read2b(dummy))