summaryrefslogtreecommitdiff
path: root/src/quickfix.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-07-26 22:51:28 +0200
committerBram Moolenaar <Bram@vim.org>2010-07-26 22:51:28 +0200
commit5e109c4ab009a5b4c3bb769d8b2d22f9e4ee2c87 (patch)
tree3bf319d351e36d9576d149428e34663739e8a4ae /src/quickfix.c
parent0ed0eea20689b3bdafe296f4e132679d3977b943 (diff)
downloadvim-git-5e109c4ab009a5b4c3bb769d8b2d22f9e4ee2c87.tar.gz
Fix compiler warnings on 64 bit systems.
Diffstat (limited to 'src/quickfix.c')
-rw-r--r--src/quickfix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quickfix.c b/src/quickfix.c
index 883de8c72..3ecc81c72 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -898,7 +898,7 @@ qf_new_list(qi, qf_title)
qi->qf_lists[qi->qf_curlist].qf_count = 0;
if (qf_title != NULL)
{
- char_u *p = alloc(STRLEN(qf_title) + 2);
+ char_u *p = alloc((int)STRLEN(qf_title) + 2);
qi->qf_lists[qi->qf_curlist].qf_title = p;
if (p != NULL)