1
0
forked from aniani/vim

Fix compiler warnings on 64 bit systems.

This commit is contained in:
Bram Moolenaar
2010-07-26 22:51:28 +02:00
parent 0ed0eea206
commit 5e109c4ab0
4 changed files with 7 additions and 6 deletions

View File

@@ -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)