commit | 5e109c4ab009a5b4c3bb769d8b2d22f9e4ee2c87 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Jul 26 22:51:28 2010 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Jul 26 22:51:28 2010 +0200 |
tree | 3bf319d351e36d9576d149428e34663739e8a4ae | |
parent | 0ed0eea20689b3bdafe296f4e132679d3977b943 [diff] [blame] |
Fix compiler warnings on 64 bit systems.
diff --git a/src/quickfix.c b/src/quickfix.c index 883de8c..3ecc81c 100644 --- a/src/quickfix.c +++ b/src/quickfix.c
@@ -898,7 +898,7 @@ 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)