summaryrefslogtreecommitdiff
path: root/idl/source
diff options
context:
space:
mode:
authorBugra <bugrakurt26@gmail.com>2020-03-08 20:13:52 +0300
committerMichael Stahl <michael.stahl@cib.de>2020-03-11 17:36:44 +0100
commitad53c996205c290b88fd7acc9fa5c42c3eb5862b (patch)
tree6b9177beb15d02ff616b33bfe1e9524fcdde1f61 /idl/source
parenteefbc076863671cb083a36bccad51ca34ef22e1b (diff)
tdf#114441: Convert use of sal_uLong to better integer types
Change-Id: I6b6f59a73aeda6af78fecaf4344826a943072033 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90191 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'idl/source')
-rw-r--r--idl/source/cmptools/lex.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idl/source/cmptools/lex.cxx b/idl/source/cmptools/lex.cxx
index f479bea4c4b7..eb9ad11703a2 100644
--- a/idl/source/cmptools/lex.cxx
+++ b/idl/source/cmptools/lex.cxx
@@ -204,8 +204,8 @@ bool SvTokenStream::MakeToken( SvToken & rToken )
}
while( 0 == c && !IsEof() && ( ERRCODE_NONE == pInStream->GetError() ) );
- sal_uLong nLastLine = nLine;
- sal_uLong nLastColumn = nColumn;
+ sal_uInt64 nLastLine = nLine;
+ sal_uInt64 nLastColumn = nColumn;
// comment
if( '/' == c )
{