[Libreoffice-commits] core.git: vcl/source

Pelin Kuran (via logerrit) logerrit at kemper.freedesktop.org
Sat Feb 1 09:50:51 UTC 2020


 vcl/source/bitmap/Octree.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9465bc10db81d2a2d1e2a82dbaaefa02d2939db1
Author:     Pelin Kuran <pelinrkuran at gmail.com>
AuthorDate: Tue Jan 28 11:50:52 2020 +0300
Commit:     Muhammet Kara <muhammet.kara at collabora.com>
CommitDate: Sat Feb 1 10:50:18 2020 +0100

    tdf#114441: Convert use of sal_uLong to better integer types
    
    Change-Id: I74a81434438c89538ece8438983dd639831ac4b3
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87584
    Reviewed-by: Muhammet Kara <muhammet.kara at collabora.com>
    Tested-by: Muhammet Kara <muhammet.kara at collabora.com>

diff --git a/vcl/source/bitmap/Octree.cxx b/vcl/source/bitmap/Octree.cxx
index e89b1d8c9404..fce531d4966b 100644
--- a/vcl/source/bitmap/Octree.cxx
+++ b/vcl/source/bitmap/Octree.cxx
@@ -140,7 +140,7 @@ void Octree::reduce()
     pNode = mpReduce[nIndex];
     mpReduce[nIndex] = pNode->pNext;
 
-    for (sal_uLong i = 0; i < 8; i++)
+    for (unsigned int i = 0; i < 8; i++)
     {
         if (pNode->pChild[i])
         {


More information about the Libreoffice-commits mailing list