diff options
author | Anton Ovchinnikov <revolver112@gmail.com> | 2015-03-09 00:40:50 +0100 |
---|---|---|
committer | Anton Ovchinnikov <revolver112@gmail.com> | 2015-03-09 00:40:50 +0100 |
commit | 9925b3a0477e5af348a8348544e69a65a9222c1b (patch) | |
tree | 467cdcd1d1f9f6662aa7ea9331f4ddceacbdbfb8 /src/nvim/if_cscope.c | |
parent | c0a668aa26a01145bee1d8162e14bacd0a10eca2 (diff) | |
download | rneovim-9925b3a0477e5af348a8348544e69a65a9222c1b.tar.gz rneovim-9925b3a0477e5af348a8348544e69a65a9222c1b.tar.bz2 rneovim-9925b3a0477e5af348a8348544e69a65a9222c1b.zip |
Remove redundant casts
Diffstat (limited to 'src/nvim/if_cscope.c')
-rw-r--r-- | src/nvim/if_cscope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/if_cscope.c b/src/nvim/if_cscope.c index 09f4ecf519..df61afa398 100644 --- a/src/nvim/if_cscope.c +++ b/src/nvim/if_cscope.c @@ -772,7 +772,7 @@ err_closing: #endif /* expand the cscope exec for env var's */ prog = xmalloc(MAXPATHL + 1); - expand_env((char_u *)p_csprg, (char_u *)prog, MAXPATHL); + expand_env(p_csprg, (char_u *)prog, MAXPATHL); /* alloc space to hold the cscope command */ len = (int)(strlen(prog) + strlen(csinfo[i].fname) + 32); |