From a4987bac3ea8cf6d1e7a9677e5cbdf52d618dced Mon Sep 17 00:00:00 2001 From: James McCoy Date: Fri, 8 Jul 2016 14:33:51 -0400 Subject: lint --- src/nvim/eval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 4374d66e4b..7fb7969783 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -7639,7 +7639,7 @@ static void fill_assert_error(garray_T *gap, typval_T *opt_msg_tv, } else { ga_concat(gap, exp_str); } - tofree = (char_u *) encode_tv2string(got_tv, NULL); + tofree = (char_u *)encode_tv2string(got_tv, NULL); if (atype == ASSERT_MATCH) { ga_concat(gap, (char_u *)" does not match "); } else if (atype == ASSERT_NOTMATCH) { -- cgit