basic/source/sbx/sbxscan.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 175afdcb151d9ce1238dc9fec59f2dfc2eb07345
Author: Damjan Jovanovic <dam...@apache.org>
Date:   Wed Aug 26 18:10:02 2015 +0000

    #i112383# CLng("&HFFFFFFFF") fails on 64-bits rather than returning -1
    
    Found-by: andrew
    Patch-by: Damjan Jovanovic

diff --git a/basic/source/sbx/sbxscan.cxx b/basic/source/sbx/sbxscan.cxx
index 910e61a..0cf4b7d 100644
--- a/basic/source/sbx/sbxscan.cxx
+++ b/basic/source/sbx/sbxscan.cxx
@@ -202,7 +202,7 @@ SbxError ImpScan( const ::rtl::OUString& rWSrc, double& 
nVal, SbxDataType& rType
             case 'H': break;
             default : bRes = sal_False;
         }
-        long l = 0;
+        sal_Int32 l = 0;
         int i;
         while( isalnum( *p ) )
         {
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to