aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Editor.cxx2
-rw-r--r--src/ScintillaBase.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 8c57ca5b3..01a45e374 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -8187,5 +8187,5 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) {
return DefWndProc(iMessage, wParam, lParam);
}
//Platform::DebugPrintf("end wnd proc\n");
- return 0l;
+ return 0;
}
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx
index 9855c1638..302c178e2 100644
--- a/src/ScintillaBase.cxx
+++ b/src/ScintillaBase.cxx
@@ -1161,5 +1161,5 @@ sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPara
default:
return Editor::WndProc(iMessage, wParam, lParam);
}
- return 0l;
+ return 0;
}