comparison src/netbeans.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 41fbbcea0f1b
comparison
equal deleted inserted replaced
15489:3bbefd5c9d0d 15490:98c35d312987
1539 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file) 1539 if (buf->bufp != NULL && buf->bufp->b_was_netbeans_file)
1540 { 1540 {
1541 if (!buf->bufp->b_netbeans_file) 1541 if (!buf->bufp->b_netbeans_file)
1542 { 1542 {
1543 nbdebug(("E658: NetBeans connection lost for buffer %ld\n", buf->bufp->b_fnum)); 1543 nbdebug(("E658: NetBeans connection lost for buffer %ld\n", buf->bufp->b_fnum));
1544 semsg(_("E658: NetBeans connection lost for buffer %ld"), 1544 semsg(_("E658: NetBeans connection lost for buffer %d"),
1545 buf->bufp->b_fnum); 1545 buf->bufp->b_fnum);
1546 } 1546 }
1547 else 1547 else
1548 { 1548 {
1549 /* NetBeans uses stopDocumentListen when it stops editing 1549 /* NetBeans uses stopDocumentListen when it stops editing