diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-01-16 00:10:41 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-01-18 00:09:50 +0100 |
commit | ea7491586fccb2ce6de43b77fd0bd06b6dbaa17d (patch) | |
tree | 3b9c61978a8ea0fbe16c93e7b7007dbdb062cea0 /src/nvim/ex_cmds.c | |
parent | ed171f7be29f7337aaba8c420406afc8a58c1613 (diff) | |
download | rneovim-ea7491586fccb2ce6de43b77fd0bd06b6dbaa17d.tar.gz rneovim-ea7491586fccb2ce6de43b77fd0bd06b6dbaa17d.tar.bz2 rneovim-ea7491586fccb2ce6de43b77fd0bd06b6dbaa17d.zip |
PVS/V1032: pointer cast to a more strictly aligned type
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 85844c37bd..7bc9a9244f 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -4895,7 +4895,7 @@ int find_help_tags(const char_u *arg, int *num_matches, char_u ***matches, } } - *matches = (char_u **)""; + *matches = &vim_emptystr; *num_matches = 0; int flags = TAG_HELP | TAG_REGEXP | TAG_NAMES | TAG_VERBOSE; if (keep_lang) { |