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 /gtk | |
| 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 'gtk')
| -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) { |
