diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-09-24 05:13:55 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-24 05:13:55 -0700 |
commit | bc570b00641386f6c60b24bc2207661b7551ca10 (patch) | |
tree | 9bce911896cb8b9f87f61b2a5e4bb704f3204b99 /src/nvim/ex_cmds2.c | |
parent | 55d1e630b4d66ecb774824c9839e7f5821d23341 (diff) | |
parent | 03ed72642ddfe6a603673efdc0998a154e581b88 (diff) | |
download | rneovim-bc570b00641386f6c60b24bc2207661b7551ca10.tar.gz rneovim-bc570b00641386f6c60b24bc2207661b7551ca10.tar.bz2 rneovim-bc570b00641386f6c60b24bc2207661b7551ca10.zip |
Merge #15774 fix(pvs): fix warnings, script
Diffstat (limited to 'src/nvim/ex_cmds2.c')
-rw-r--r-- | src/nvim/ex_cmds2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index d8827f0a3d..1a576bd891 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -1950,7 +1950,7 @@ static int source_using_linegetter(void *cookie, LineGetter fgetline, const char snprintf((char *)sourcing_name_buf, sizeof(sourcing_name_buf), "%s called at %s:%" PRIdLINENR, traceback_name, save_sourcing_name, save_sourcing_lnum); - sourcing_name = sourcing_name_buf; + sourcing_name = sourcing_name_buf; // -V507 reassigned below, before return. } sourcing_lnum = 0; |