diff options
author | erw7 <erw7.github@gmail.com> | 2019-03-01 16:12:11 +0900 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-03-03 11:22:59 +0100 |
commit | cef0107c1444014eb98799b20288f74bc5a83757 (patch) | |
tree | 5bd6953e032c110e4c3c550586e6eb38ecd4eb26 /src/nvim/os/fs.c | |
parent | 14c53e4cbede164fb7bbfc948625a769dfb1fa64 (diff) | |
download | rneovim-cef0107c1444014eb98799b20288f74bc5a83757.tar.gz rneovim-cef0107c1444014eb98799b20288f74bc5a83757.tar.bz2 rneovim-cef0107c1444014eb98799b20288f74bc5a83757.zip |
os/env: Fix completion of multibyte env var names
fixes #9655
Diffstat (limited to 'src/nvim/os/fs.c')
-rw-r--r-- | src/nvim/os/fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c index 109ea6c487..7f2ebeec2f 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -1104,7 +1104,7 @@ char *os_resolve_shortcut(const char *fname) if (hr == S_OK && wsz[0] != NUL) { const int conversion_result = utf16_to_utf8(wsz, &rfname); if (conversion_result != 0) { - EMSG2("utf16_to_utf8 failed: %s", uv_strerror(conversion_result)); + EMSG2("utf16_to_utf8 failed: %d", conversion_result); } } |