diff options
author | Volodymyr Kot <volodymyr.kot.ua@gmail.com> | 2021-11-20 12:26:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-20 13:26:16 +0100 |
commit | 2bd8f2fb5ee958e210efa27286a8fe0c27b8dbbc (patch) | |
tree | 33a727787ea1c6dc06c9200565a51a6b55633bb7 /src | |
parent | 725cbe7d414f609e769081276f2a034e32a4337b (diff) | |
download | rneovim-2bd8f2fb5ee958e210efa27286a8fe0c27b8dbbc.tar.gz rneovim-2bd8f2fb5ee958e210efa27286a8fe0c27b8dbbc.tar.bz2 rneovim-2bd8f2fb5ee958e210efa27286a8fe0c27b8dbbc.zip |
vim-patch:8.1.0753: printf format not checked for semsg() (#16378)
Problem: printf format not checked for semsg().
Solution: Add GNUC attribute and fix reported problems. (Dominique Pelle,
closes vim/vim#3805)
https://github.com/vim/vim/commit/b5443cc46dd1485d6c785dd8c65a2c07bd5a17f3
(Most of the changes do not apply because Neovim already uses PRId64 and other spelling mistakes were already fixed.)
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/ex_docmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index bb6a2ef401..34c3b3889e 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -6184,7 +6184,7 @@ static void do_ucmd(exarg_T *eap) } } - // break if there no <item> is found + // break if no <item> is found if (start == NULL || end == NULL) { break; } |