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

New commits:
commit 9465bc10db81d2a2d1e2a82dbaaefa02d2939db1
Author:     Pelin Kuran <pelinrku...@gmail.com>
AuthorDate: Tue Jan 28 11:50:52 2020 +0300
Commit:     Muhammet Kara <muhammet.k...@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.k...@collabora.com>
    Tested-by: Muhammet Kara <muhammet.k...@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])
         {
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to