diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-10-03 00:19:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-03 06:19:30 +0800 |
commit | fd791db0ecebf5d5bf8922ba519f8dd4eef3c5e6 (patch) | |
tree | 2feed1649c6cc6c15ce0eec05559484c023d15aa /src/nvim/eval.c | |
parent | eb1f0e8fcca756a00d287e23bf87554e0e7f6dfd (diff) | |
download | rneovim-fd791db0ecebf5d5bf8922ba519f8dd4eef3c5e6.tar.gz rneovim-fd791db0ecebf5d5bf8922ba519f8dd4eef3c5e6.tar.bz2 rneovim-fd791db0ecebf5d5bf8922ba519f8dd4eef3c5e6.zip |
fix: fix ASAN errors on clang 17 (#25469)
Diffstat (limited to 'src/nvim/eval.c')
-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 014335f5ed..62ad6c057d 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -1226,7 +1226,7 @@ fail: /// /// @return [allocated] NULL when calling function fails, allocated string /// otherwise. -char *call_func_retstr(const char *const func, int argc, typval_T *argv) +void *call_func_retstr(const char *const func, int argc, typval_T *argv) FUNC_ATTR_NONNULL_ALL FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_MALLOC { typval_T rettv; |