summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-30 09:09:17 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-30 11:48:57 +0100
commit416b56bbf0885c5e3dc6ef6e75885466dce42c30 (patch)
tree64db326eac8b9e8b96bdc362746491eccdebe66f /filter
parentce0539630a6caa2d575760b3d4e57c98ab167b14 (diff)
coverity#706003 Unintended sign extension
Change-Id: I888b5610a00a152551776e5d8f82fc5353bc880d
Diffstat (limited to 'filter')
-rw-r--r--filter/source/graphicfilter/eps/eps.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/graphicfilter/eps/eps.cxx b/filter/source/graphicfilter/eps/eps.cxx
index 505e495a5f53..5778c34f4b48 100644
--- a/filter/source/graphicfilter/eps/eps.cxx
+++ b/filter/source/graphicfilter/eps/eps.cxx
@@ -155,8 +155,8 @@ private:
sal_uInt16 nEOICode;
sal_uInt16 nTableSize;
sal_uInt16 nCodeSize;
- sal_uLong nOffset;
- sal_uLong dwShift;
+ sal_uInt32 nOffset;
+ sal_uInt32 dwShift;
com::sun::star::uno::Reference< com::sun::star::task::XStatusIndicator > xStatusIndicator;