From a4e51f72ab5dac1149b415c6fc0bf1c87a11acda Mon Sep 17 00:00:00 2001 From: Mark Bainter Date: Sun, 12 Apr 2015 21:26:06 +0000 Subject: Remove char_u: vim_setenv() --- src/nvim/diff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/diff.c') diff --git a/src/nvim/diff.c b/src/nvim/diff.c index 937baad648..88d63b3383 100644 --- a/src/nvim/diff.c +++ b/src/nvim/diff.c @@ -808,7 +808,7 @@ static void diff_file(char_u *tmp_orig, char_u *tmp_new, char_u *tmp_diff) /* We don't want $DIFF_OPTIONS to get in the way. */ if (os_getenv("DIFF_OPTIONS")) { - vim_setenv((char_u *)"DIFF_OPTIONS", (char_u *)""); + vim_setenv("DIFF_OPTIONS", ""); } /* Build the diff command and execute it. Always use -a, binary -- cgit