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 | 80949616e53bcc960ebc375f067d612b1f608f11 (patch) | |
tree | 9aa3e3b35118a9ce83a35a79d3acc4401f23896f /gtk/ScintillaGTK.cxx | |
parent | 3f3facbe7b417c8a1ac614a90842f42f03fa8275 (diff) | |
download | scintilla-mirror-80949616e53bcc960ebc375f067d612b1f608f11.tar.gz |
Bug [#2012]. Use '0' instead of '0l'.
Diffstat (limited to 'gtk/ScintillaGTK.cxx')
-rw-r--r-- | gtk/ScintillaGTK.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 2326a54cc..a720e403b 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -870,7 +870,7 @@ sptr_t ScintillaGTK::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam } catch (...) { errorStatus = SC_STATUS_FAILURE; } - return 0l; + return 0; } sptr_t ScintillaGTK::DefWndProc(unsigned int, uptr_t, sptr_t) { |