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 /cocoa/ScintillaCocoa.mm | |
parent | 3f3facbe7b417c8a1ac614a90842f42f03fa8275 (diff) | |
download | scintilla-mirror-80949616e53bcc960ebc375f067d612b1f608f11.tar.gz |
Bug [#2012]. Use '0' instead of '0l'.
Diffstat (limited to 'cocoa/ScintillaCocoa.mm')
-rw-r--r-- | cocoa/ScintillaCocoa.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm index e21f147af..a7e2cff65 100644 --- a/cocoa/ScintillaCocoa.mm +++ b/cocoa/ScintillaCocoa.mm @@ -887,7 +887,7 @@ sptr_t ScintillaCocoa::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPar } catch (...) { errorStatus = SC_STATUS_FAILURE; } - return 0l; + return 0; } //-------------------------------------------------------------------------------------------------- |