From 7f6f9643d38f799155a76c108c8273f5cb2136ca Mon Sep 17 00:00:00 2001 From: Neil Hodgson Date: Mon, 17 Jul 2017 15:18:31 +1000 Subject: Update types for Unix LP64 after changes to Sci_Position/Sci_PositionU. --- lexers/LexMySQL.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lexers/LexMySQL.cxx') diff --git a/lexers/LexMySQL.cxx b/lexers/LexMySQL.cxx index 703b24daf..03cf106e6 100644 --- a/lexers/LexMySQL.cxx +++ b/lexers/LexMySQL.cxx @@ -55,7 +55,7 @@ static inline bool IsANumberChar(int ch) { */ static void CheckForKeyword(StyleContext& sc, WordList* keywordlists[], int activeState) { - int length = sc.LengthCurrent() + 1; // +1 for the next char + Sci_Position length = sc.LengthCurrent() + 1; // +1 for the next char char* s = new char[length]; sc.GetCurrentLowered(s, length); if (keywordlists[0]->InList(s)) -- cgit v1.2.3