diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-05-05 18:42:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-05 18:42:00 +0200 |
commit | d4f47fe17d5168304b73df26a5d8fe3b11832128 (patch) | |
tree | de2c438ed9b0936795ae4f99e9a6e4df2c6ffe2f /src/nvim/eval/typval_encode.c.h | |
parent | 3e3e9c31255cd5c01bce96c68e5b1cf8e26a9f4d (diff) | |
parent | 9a671e6a24243a5ff2879599d91ab5aec8b4e77d (diff) | |
download | rneovim-d4f47fe17d5168304b73df26a5d8fe3b11832128.tar.gz rneovim-d4f47fe17d5168304b73df26a5d8fe3b11832128.tar.bz2 rneovim-d4f47fe17d5168304b73df26a5d8fe3b11832128.zip |
Merge pull request #18416 from dundargoc/refactor/remove-char_u
refactor/remove char u
Diffstat (limited to 'src/nvim/eval/typval_encode.c.h')
-rw-r--r-- | src/nvim/eval/typval_encode.c.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval/typval_encode.c.h b/src/nvim/eval/typval_encode.c.h index 42b0544ef9..bd23fb4154 100644 --- a/src/nvim/eval/typval_encode.c.h +++ b/src/nvim/eval/typval_encode.c.h @@ -335,7 +335,7 @@ static int _TYPVAL_ENCODE_CONVERT_ONE_VALUE( tv_blob_len(tv->vval.v_blob)); break; case VAR_FUNC: - TYPVAL_ENCODE_CONV_FUNC_START(tv, tv->vval.v_string); + TYPVAL_ENCODE_CONV_FUNC_START(tv, (char_u *)tv->vval.v_string); TYPVAL_ENCODE_CONV_FUNC_BEFORE_ARGS(tv, 0); TYPVAL_ENCODE_CONV_FUNC_BEFORE_SELF(tv, -1); TYPVAL_ENCODE_CONV_FUNC_END(tv); |