Skip to content

Commit 40b2e66

Browse files
committed
fix appveyor warning
1 parent 6a9a63a commit 40b2e66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NppJSONViewer/PluginDefinition.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ void formatSelectedJSON()
246246
unsigned indentLen = useTabs ? 1 : static_cast<unsigned>(::SendMessage(curScintilla, SCI_GETTABWIDTH, 0, 0));
247247
char indentChar = useTabs ? '\t' : ' ';
248248

249-
int eolMode = ::SendMessage(curScintilla, SCI_GETEOLMODE, 0, 0);
249+
LRESULT eolMode = ::SendMessage(curScintilla, SCI_GETEOLMODE, 0, 0);
250250
switch (eolMode) {
251251
case 0:
252252
pw.SetLineEnding(rapidjson::LineEndingOption::kCrLf);

0 commit comments

Comments
 (0)