filter/source/msfilter/msdffimp.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit e466b4a92f5f7c49c6aff01af994d59d13633529
Author:     Arvind K <khandelwalarvin...@gmail.com>
AuthorDate: Mon Mar 6 11:36:15 2023 +0530
Commit:     Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org>
CommitDate: Thu Mar 23 11:53:16 2023 +0000

    tdf#114441 Convert sal_uLong to better integer types
    
    filter/ -> nFilePos in struct SvxMSDffBLIPInfo is assigned nBLIPPos
    which is defined as sal_uInt32.
    
    Change-Id: If2815449d12b17e8caadaff0324371c69a5a5ab6
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148291
    Tested-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org>
    Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org>

diff --git a/filter/source/msfilter/msdffimp.cxx 
b/filter/source/msfilter/msdffimp.cxx
index 53818a550bec..b397630f028a 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -188,8 +188,8 @@ enum class OfficeArtBlipRecInstance : sal_uInt32
 
 struct SvxMSDffBLIPInfo
 {
-    sal_uLong  nFilePos;    ///< offset of the BLIP in data stream
-    explicit SvxMSDffBLIPInfo(sal_uLong nFPos)
+    sal_uInt32  nFilePos;    ///< offset of the BLIP in data stream
+    explicit SvxMSDffBLIPInfo(sal_uInt32 nFPos)
         : nFilePos(nFPos)
     {
     }

Reply via email to