From e4d59c0da7564bc43533a4868a9d5d6304528581 Mon Sep 17 00:00:00 2001 From: Neil Date: Tue, 1 May 2018 08:16:31 +1000 Subject: Backport: Bug [#2012]. Use '0' instead of '0l'. Backport of changeset 6768:afe3117ead02. --- cocoa/ScintillaCocoa.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cocoa') diff --git a/cocoa/ScintillaCocoa.mm b/cocoa/ScintillaCocoa.mm index a26cf074a..7f655adbb 100644 --- a/cocoa/ScintillaCocoa.mm +++ b/cocoa/ScintillaCocoa.mm @@ -905,7 +905,7 @@ sptr_t ScintillaCocoa::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPar } catch (...) { errorStatus = SC_STATUS_FAILURE; } - return 0l; + return 0; } //-------------------------------------------------------------------------------------------------- -- cgit v1.2.3