aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-05-26 09:38:38 +1000
committernyamatongwe <devnull@localhost>2011-05-26 09:38:38 +1000
commited1d8c07fcccfebbabb6a98f37e66b60e85783bb (patch)
tree98f1abd4b9bd1832938a268d2e8c6f9571729824 /cocoa
parentfc4fa67c768ae1222877e936b9365378fd3a217f (diff)
downloadscintilla-mirror-ed1d8c07fcccfebbabb6a98f37e66b60e85783bb.tar.gz
Made 64-bit type safe.
Diffstat (limited to 'cocoa')
-rw-r--r--cocoa/ScintillaCocoa.mm2
1 files changed, 1 insertions, 1 deletions
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;
}