From 06b40d31c1ff4b07cfc44feb4c72d99cc0a2178e Mon Sep 17 00:00:00 2001 From: Charles Joachim Date: Sat, 12 Mar 2016 10:19:51 -0500 Subject: path.c: enable -Wconversion --- src/nvim/os/fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/os') diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c index 2e671653ed..34d8fde4f1 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -166,7 +166,7 @@ static bool is_executable_in_path(const char_u *name, char_u **abspath) // Glue together the given directory from $PATH with name and save into // buf. STRLCPY(buf, path, e - path + 1); - append_path((char *) buf, (const char *) name, (int)buf_len); + append_path((char *) buf, (const char *) name, buf_len); if (is_executable(buf)) { // Check if the caller asked for a copy of the path. -- cgit