diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-03-16 15:04:34 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-03-16 15:04:34 +0000 |
commit | cb4cef2206b19e5d8737580eee29b44f45cb7de1 (patch) | |
tree | b1b913a81d81e668f2c33ba5fde0de5255cdae6a /src/if_cscope.c | |
parent | 0fde290e55feb8f3505c790c8ce9b5302893dfae (diff) | |
download | vim-git-cb4cef2206b19e5d8737580eee29b44f45cb7de1.tar.gz |
updated for version 7.1-283v7.1.283
Diffstat (limited to 'src/if_cscope.c')
-rw-r--r-- | src/if_cscope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c index e76b58dd7..b2d39cf42 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; |