diff options
author | James McCoy <jamessan@jamessan.com> | 2016-07-08 14:33:51 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2016-07-23 20:42:46 -0400 |
commit | a4987bac3ea8cf6d1e7a9677e5cbdf52d618dced (patch) | |
tree | 42fa44be81203efd7bf6d2e0639cd492f2a6f3b6 | |
parent | 452707e0b0bb6927350d2a68485a5453c214610b (diff) | |
download | rneovim-a4987bac3ea8cf6d1e7a9677e5cbdf52d618dced.tar.gz rneovim-a4987bac3ea8cf6d1e7a9677e5cbdf52d618dced.tar.bz2 rneovim-a4987bac3ea8cf6d1e7a9677e5cbdf52d618dced.zip |
lint
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |