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 /win32/ScintillaWin.cxx | |
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 'win32/ScintillaWin.cxx')
-rw-r--r-- | win32/ScintillaWin.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 19bee6c62..51d462659 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -885,7 +885,7 @@ sptr_t ScintillaWin::WndPaint(uptr_t wParam) { Platform::ShowAssertionPopUps(assertsPopup); //Platform::DebugPrintf("Paint took %g\n", ep.Duration()); - return 0l; + return 0; } sptr_t ScintillaWin::HandleCompositionWindowed(uptr_t wParam, sptr_t lParam) { @@ -1771,7 +1771,7 @@ sptr_t ScintillaWin::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam } catch (...) { errorStatus = SC_STATUS_FAILURE; } - return 0l; + return 0; } bool ScintillaWin::ValidCodePage(int codePage) const { |