From 5ce0189a77f46696eaa1f3cc5dd0aff2bb5cabd4 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 21 Apr 2002 10:20:59 +0000 Subject: Some Win64 compatibility and size_t correctness. --- win32/ExternalLexer.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'win32/ExternalLexer.cxx') diff --git a/win32/ExternalLexer.cxx b/win32/ExternalLexer.cxx index b93cca8f4..593bb315a 100644 --- a/win32/ExternalLexer.cxx +++ b/win32/ExternalLexer.cxx @@ -230,7 +230,7 @@ void LexerManager::EnumerateLexers() { int i = FindLastSlash(path); if (i == -1) - i = strlen(path); + i = static_cast(strlen(path)); SString sPath(path, 0, i); -- cgit v1.2.3