mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.1.0753: printf format not checked for semsg()
Problem: printf format not checked for semsg(). Solution: Add GNUC attribute and fix reported problems. (Dominique Pelle, closes #3805)
This commit is contained in:
@@ -6263,7 +6263,7 @@ qf_add_entry_from_dict(
|
||||
if (!did_bufnr_emsg)
|
||||
{
|
||||
did_bufnr_emsg = TRUE;
|
||||
semsg(_("E92: Buffer %ld not found"), bufnum);
|
||||
semsg(_("E92: Buffer %d not found"), bufnum);
|
||||
}
|
||||
valid = FALSE;
|
||||
bufnum = 0;
|
||||
|
Reference in New Issue
Block a user