diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-16 14:25:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-17 08:14:03 +0200 |
commit | 224b770fa77fe12ad5dc543ce020aca316b6558d (patch) | |
tree | 5bd71b4ccf39558b4afcd3f7f67744a111cda3b8 /vcl/win/gdi | |
parent | b2cb3196868deb499bb91fc9bdbe6c8f7d1e9033 (diff) |
remove UL/L suffixes from shift-by-constant expressions
Change-Id: Ia470f643e3eefeccc14183133603db260460bd53
Reviewed-on: https://gerrit.libreoffice.org/41212
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/win/gdi')
-rw-r--r-- | vcl/win/gdi/salbmp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/gdi/salbmp.cxx b/vcl/win/gdi/salbmp.cxx index e8f1a1fa99fb..7ef19c97d6c3 100644 --- a/vcl/win/gdi/salbmp.cxx +++ b/vcl/win/gdi/salbmp.cxx @@ -986,7 +986,7 @@ void WinSalBitmap::ImplDecodeRLEBuffer( const BYTE* pSrcBuf, BYTE* pDstBuf, { if( bRLE4 ) { - nCountByte = nRunByte >> 1UL; + nCountByte = nRunByte >> 1; for( i = 0; i < nCountByte; i++ ) { |