From 68d8ab54a126671ccd157318c3d51885872dec1d Mon Sep 17 00:00:00 2001 From: Rich Wareham Date: Mon, 24 Feb 2014 20:11:36 +0000 Subject: [PATCH] os_unix: switch to libuv chdir() function --- src/os_unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os_unix.c b/src/os_unix.c index 5ced167868..d00b5a82e0 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -229,7 +229,7 @@ int mch_chdir(char *path) smsg((char_u *)"chdir(%s)", path); verbose_leave(); } - return chdir(path); + return uv_chdir(path); } /*