diff options
author | Thomas Wienecke <wienecke.t@gmail.com> | 2014-03-30 01:57:46 +0100 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-04-03 10:32:41 -0300 |
commit | 6d712defa52e58627aca5c875677d14d705300e8 (patch) | |
tree | 69516dc311b87cc7840f05d0a88259fe2094a465 /src/if_cscope.c | |
parent | 81237af70e7ac2d2277f428da87ca5fa7b16c8e1 (diff) | |
download | rneovim-6d712defa52e58627aca5c875677d14d705300e8.tar.gz rneovim-6d712defa52e58627aca5c875677d14d705300e8.tar.bz2 rneovim-6d712defa52e58627aca5c875677d14d705300e8.zip |
Refactor fullpathcmp -> path_full_compare.
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 884fb002ff..bcbd8da40d 100644 --- a/src/if_cscope.c +++ b/src/if_cscope.c @@ -1303,7 +1303,7 @@ static int cs_insert_filelist(char *fname, char *ppath, char *flags, struct stat && csinfo[j].st_dev == sb->st_dev && csinfo[j].st_ino == sb->st_ino #else /* compare pathnames first */ - && ((fullpathcmp(csinfo[j].fname, fname, FALSE) & FPC_SAME) + && ((path_full_compare(csinfo[j].fname, fname, FALSE) & FPC_SAME) /* if not Windows 9x, test index file attributes too */ || (!mch_windows95() && csinfo[j].nVolume == bhfi.dwVolumeSerialNumber |