From 80949616e53bcc960ebc375f067d612b1f608f11 Mon Sep 17 00:00:00 2001 From: Neil Date: Tue, 1 May 2018 08:16:31 +1000 Subject: Bug [#2012]. Use '0' instead of '0l'. --- src/Editor.cxx | 2 +- src/ScintillaBase.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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; } -- cgit v1.2.3