mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
Fix compiler warnings on 64 bit systems.
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user