From 865e3280a8020d005ba462650f6479af815684a3 Mon Sep 17 00:00:00 2001 From: Thomas Wienecke Date: Tue, 1 Apr 2014 17:44:20 +0200 Subject: Fix seperator->separator, path_tail_with_separator->path_tail_with_sep. --- src/misc2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/misc2.c') diff --git a/src/misc2.c b/src/misc2.c index c43a7e4b90..c5620e2103 100644 --- a/src/misc2.c +++ b/src/misc2.c @@ -1609,7 +1609,7 @@ int vim_chdirfile(char_u *fname) char_u dir[MAXPATHL]; vim_strncpy(dir, fname, MAXPATHL - 1); - *path_tail_with_seperator(dir) = NUL; + *path_tail_with_sep(dir) = NUL; return os_chdir((char *)dir) == 0 ? OK : FAIL; } #endif -- cgit