From ea7491586fccb2ce6de43b77fd0bd06b6dbaa17d Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Wed, 16 Jan 2019 00:10:41 +0100 Subject: PVS/V1032: pointer cast to a more strictly aligned type --- src/nvim/ex_getln.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/ex_getln.c') 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 -- cgit