From d23faf1d1ae526cc7af5470e60eb7dc7a46e74cc Mon Sep 17 00:00:00 2001 From: Mehmet Emin Başoğlu Date: Sun, 26 Jan 2020 17:11:33 +0300 Subject: tdf#75280: Convert inappropriate use of sal_uIntPtr to better integer types Change-Id: I5c25999a17ed64cc5a2fa586cd7d986d233a67f2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87455 Tested-by: Jenkins Reviewed-by: Muhammet Kara --- svx/source/gallery2/codec.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svx/source/gallery2/codec.cxx b/svx/source/gallery2/codec.cxx index 773b769a2678..5063632d1d93 100644 --- a/svx/source/gallery2/codec.cxx +++ b/svx/source/gallery2/codec.cxx @@ -35,7 +35,7 @@ GalleryCodec::~GalleryCodec() bool GalleryCodec::IsCoded( SvStream& rStm, sal_uInt32& rVersion ) { - const sal_uIntPtr nPos = rStm.Tell(); + const sal_uInt64 nPos = rStm.Tell(); bool bRet; sal_uInt8 cByte1, cByte2, cByte3, cByte4, cByte5, cByte6; -- cgit