From 2bd8f2fb5ee958e210efa27286a8fe0c27b8dbbc Mon Sep 17 00:00:00 2001 From: Volodymyr Kot Date: Sat, 20 Nov 2021 12:26:16 +0000 Subject: 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.) --- src/nvim/ex_docmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 is found + // break if no is found if (start == NULL || end == NULL) { break; } -- cgit