summaryrefslogtreecommitdiffstats
path: root/src/if_cscope.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2008-03-16 15:04:34 +0000
committerBram Moolenaar <Bram@vim.org>2008-03-16 15:04:34 +0000
commitcb4cef2206b19e5d8737580eee29b44f45cb7de1 (patch)
treeb1b913a81d81e668f2c33ba5fde0de5255cdae6a /src/if_cscope.c
parent0fde290e55feb8f3505c790c8ce9b5302893dfae (diff)
updated for version 7.1-283v7.1.283
Diffstat (limited to 'src/if_cscope.c')
-rw-r--r--src/if_cscope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c
index e76b58dd7f..b2d39cf42d 100644
--- a/src/if_cscope.c
+++ b/src/if_cscope.c
@@ -1400,7 +1400,7 @@ cs_lookup_cmd(eap)
return NULL;
/* Store length of eap->arg before it gets modified by strtok(). */
- eap_arg_len = STRLEN(eap->arg);
+ eap_arg_len = (int)STRLEN(eap->arg);
if ((stok = strtok((char *)(eap->arg), (const char *)" ")) == NULL)
return NULL;