summaryrefslogtreecommitdiffstats
path: root/src/if_cscope.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/if_cscope.c')
-rw-r--r--src/if_cscope.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c
index ad29fb9f50..809475039c 100644
--- a/src/if_cscope.c
+++ b/src/if_cscope.c
@@ -961,12 +961,12 @@ err_closing:
#endif
if (csinfo[i].ppath != NULL)
{
- len = STRLEN(cmd);
+ len = (int)STRLEN(cmd);
vim_snprintf(cmd + len, cmdlen - len, " -P%s", csinfo[i].ppath);
}
if (csinfo[i].flags != NULL)
{
- len = STRLEN(cmd);
+ len = (int)STRLEN(cmd);
vim_snprintf(cmd + len, cmdlen - len, " %s", csinfo[i].flags);
}
# ifdef UNIX