From 662eea8287346dba3791d73c0280ddb302223a4d Mon Sep 17 00:00:00 2001 From: Charles Joachim Date: Sun, 28 Feb 2016 00:50:12 -0500 Subject: quickfix.c: enable -Wconversion --- src/nvim/diff.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/diff.c') diff --git a/src/nvim/diff.c b/src/nvim/diff.c index 0be8b3c514..1149ca1e62 100644 --- a/src/nvim/diff.c +++ b/src/nvim/diff.c @@ -819,8 +819,8 @@ static void diff_file(char_u *tmp_orig, char_u *tmp_new, char_u *tmp_diff) (diff_flags & DIFF_IWHITE) ? "-b " : "", (diff_flags & DIFF_ICASE) ? "-i " : "", tmp_orig, tmp_new); - append_redir(cmd, (int)len, p_srr, tmp_diff); - block_autocmds(); /* Avoid ShellCmdPost stuff */ + append_redir(cmd, len, p_srr, tmp_diff); + block_autocmds(); // Avoid ShellCmdPost stuff (void)call_shell( cmd, kShellOptFilter | kShellOptSilent | kShellOptDoOut, -- cgit