diff options
author | Stefan Hoffmann <stefan991@gmail.com> | 2014-04-08 22:01:33 +0200 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-11 13:31:48 -0300 |
commit | a1df458524e9de0c19e4151e15765dc2bc508259 (patch) | |
tree | 8269ae4d96489d1ca23b8ce8aa4690bab555a200 /src/if_cscope.c | |
parent | 445f31f076325a68d91746bb41ac9ba139144c2d (diff) | |
download | rneovim-a1df458524e9de0c19e4151e15765dc2bc508259.tar.gz rneovim-a1df458524e9de0c19e4151e15765dc2bc508259.tar.bz2 rneovim-a1df458524e9de0c19e4151e15765dc2bc508259.zip |
removed mch_remove macro
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 65155c3421..de3d7a82db 100644 --- a/src/if_cscope.c +++ b/src/if_cscope.c @@ -1120,7 +1120,7 @@ static int cs_find_common(char *opt, char *pat, int forceit, int verbose, int us qf_jump(qi, 0, 0, forceit); } } - mch_remove(tmp); + os_remove((char *)tmp); vim_free(tmp); vim_free(nummatches); return TRUE; |