Fixed some warnings

git-svn-id: svn://ultimatepp.org/upp/trunk@15050 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2020-09-16 12:53:11 +00:00
parent 06b65065bf
commit 3b5ed30452
3 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ void PythonSyntax::Highlight(const wchar *s, const wchar *end, HighlightOutput&
int c = *s;
dword pair = MAKELONG(s[0], s[1]);
if(c == '#') {
hls.Put(end - s, hl_style[INK_COMMENT]);
hls.Put(int(end - s), hl_style[INK_COMMENT]);
return;
}
else