aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-05-01 08:16:31 +1000
committerNeil <nyamatongwe@gmail.com>2018-05-01 08:16:31 +1000
commit80949616e53bcc960ebc375f067d612b1f608f11 (patch)
tree9aa3e3b35118a9ce83a35a79d3acc4401f23896f /src
parent3f3facbe7b417c8a1ac614a90842f42f03fa8275 (diff)
downloadscintilla-mirror-80949616e53bcc960ebc375f067d612b1f608f11.tar.gz
Bug [#2012]. Use '0' instead of '0l'.
Diffstat (limited to 'src')
-rw-r--r--src/Editor.cxx2
-rw-r--r--src/ScintillaBase.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx
index 8c57ca5b3..01a45e374 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -8187,5 +8187,5 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) {
return DefWndProc(iMessage, wParam, lParam);
}
//Platform::DebugPrintf("end wnd proc\n");
- return 0l;
+ return 0;
}
diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx
index 9855c1638..302c178e2 100644
--- a/src/ScintillaBase.cxx
+++ b/src/ScintillaBase.cxx
@@ -1161,5 +1161,5 @@ sptr_t ScintillaBase::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lPara
default:
return Editor::WndProc(iMessage, wParam, lParam);
}
- return 0l;
+ return 0;
}