comparison src/quickfix.c @ 15490:98c35d312987 v8.1.0753

patch 8.1.0753: printf format not checked for semsg() commit https://github.com/vim/vim/commit/b5443cc46dd1485d6c785dd8c65a2c07bd5a17f3 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jan 15 20:19:40 2019 +0100 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)
author Bram Moolenaar <Bram@vim.org>
date Tue, 15 Jan 2019 20:30:07 +0100
parents 55ccc2d353bd
children dd725a8ab112
comparison
equal deleted inserted replaced
15489:3bbefd5c9d0d 15490:98c35d312987
6261 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL)) 6261 if (bufnum != 0 && (buflist_findnr(bufnum) == NULL))
6262 { 6262 {
6263 if (!did_bufnr_emsg) 6263 if (!did_bufnr_emsg)
6264 { 6264 {
6265 did_bufnr_emsg = TRUE; 6265 did_bufnr_emsg = TRUE;
6266 semsg(_("E92: Buffer %ld not found"), bufnum); 6266 semsg(_("E92: Buffer %d not found"), bufnum);
6267 } 6267 }
6268 valid = FALSE; 6268 valid = FALSE;
6269 bufnum = 0; 6269 bufnum = 0;
6270 } 6270 }
6271 6271