diff options
author | Neil <nyamatongwe@gmail.com> | 2018-05-01 08:16:31 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-05-01 08:16:31 +1000 |
commit | e4d59c0da7564bc43533a4868a9d5d6304528581 (patch) | |
tree | 513c0cb3c5f12fea74bba50ff2e9f96825c8d633 /src | |
parent | 986c20af79a703f90e408ebc9730b4b600ccd9b4 (diff) | |
download | scintilla-mirror-e4d59c0da7564bc43533a4868a9d5d6304528581.tar.gz |
Backport: Bug [#2012]. Use '0' instead of '0l'.
Backport of changeset 6768:afe3117ead02.
Diffstat (limited to 'src')
-rw-r--r-- | src/Editor.cxx | 2 | ||||
-rw-r--r-- | src/ScintillaBase.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 07c3c4087..28b7a1a35 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -8178,5 +8178,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 cf2f1c63b..cf1b0d588 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; } |