diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-04-16 14:09:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-04-16 14:13:47 +0200 |
commit | 1c27bb5237ed6067bba70d7ffe63ed9967098b19 (patch) | |
tree | ee6998224e06b70adf75529098199b3cf3cae1ec /rsc/inc/rscdef.hxx | |
parent | 4586d79d7421d0b4289096330c8ae0045023b313 (diff) |
Some trivial -fsanitize=undefined adaptions
Change-Id: I60f6e2b5f041919319cb6b72684b8b7b8504560c
Diffstat (limited to 'rsc/inc/rscdef.hxx')
-rw-r--r-- | rsc/inc/rscdef.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rsc/inc/rscdef.hxx b/rsc/inc/rscdef.hxx index d85657f89ebe..c38f3d9682a2 100644 --- a/rsc/inc/rscdef.hxx +++ b/rsc/inc/rscdef.hxx @@ -63,7 +63,7 @@ public: sal_Int32 GetLong() const { return aExp.aLong.nLo | - ((sal_Int32)aExp.aLong.nHi << 16); + ((sal_uInt32)aExp.aLong.nHi << 16); } bool Evaluate( sal_Int32 * pValue ) const; void AppendMacro( OStringBuffer & ) const; |