diff options
author | Rich Wareham <rjw57@cam.ac.uk> | 2014-02-24 20:11:36 +0000 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-24 22:00:03 -0300 |
commit | 68d8ab54a126671ccd157318c3d51885872dec1d (patch) | |
tree | 9602d25a882444609620ecc683d5d9febc485bc3 /src/os_unix.c | |
parent | b58f079d8a24ce13fb72d1ea043e523955a20e74 (diff) | |
download | rneovim-68d8ab54a126671ccd157318c3d51885872dec1d.tar.gz rneovim-68d8ab54a126671ccd157318c3d51885872dec1d.tar.bz2 rneovim-68d8ab54a126671ccd157318c3d51885872dec1d.zip |
os_unix: switch to libuv chdir() function
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } /* |