From ed1d8c07fcccfebbabb6a98f37e66b60e85783bb Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Thu, 26 May 2011 09:38:38 +1000 Subject: Made 64-bit type safe. --- 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 434ab942d..1bc062ced 100644 --- a/cocoa/ScintillaCocoa.mm +++ b/cocoa/ScintillaCocoa.mm @@ -396,7 +396,7 @@ sptr_t ScintillaCocoa::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPar return 0; default: - unsigned int r = ScintillaBase::WndProc(iMessage, wParam, lParam); + sptr_t r = ScintillaBase::WndProc(iMessage, wParam, lParam); return r; } -- cgit v1.2.3