diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-08-16 14:25:56 +0200 |
---|---|---|
committer | Ashod Nakashian <ashod.nakashian@collabora.co.uk> | 2017-12-05 08:17:49 -0500 |
commit | 67ea91dbfd98598017d88c66a455de58f45cb074 (patch) | |
tree | 7f1d081c07ff60548af685aa2abf413bb86be86e /vcl/win/gdi/salbmp.cxx | |
parent | 9493d3f11ba1f9e08e23ea7a1ffce1654dc264a9 (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>
(cherry picked from commit 224b770fa77fe12ad5dc543ce020aca316b6558d)
(cherry picked from commit 58c171983d4f828d36bf1f6d8fb8329e69424c7e)
Diffstat (limited to 'vcl/win/gdi/salbmp.cxx')
-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 8b95249da6d8..07378386a0f6 100644 --- a/vcl/win/gdi/salbmp.cxx +++ b/vcl/win/gdi/salbmp.cxx @@ -982,7 +982,7 @@ void WinSalBitmap::ImplDecodeRLEBuffer( const BYTE* pSrcBuf, BYTE* pDstBuf, { if( bRLE4 ) { - nCountByte = nRunByte >> 1UL; + nCountByte = nRunByte >> 1; for( i = 0; i < nCountByte; i++ ) { |