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_getln.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_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index 32620ac3c2..adba3d4e7e 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -4702,7 +4702,7 @@ ExpandFromContext ( return ret; } - *file = (char_u **)""; + *file = &vim_emptystr; *num_file = 0; if (xp->xp_context == EXPAND_HELP) { /* With an empty argument we would get all the help tags, which is |