commit | 8327d1df1754b33d8a93b3411f30692f0042f4ce | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jul 11 22:34:51 2017 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jul 11 22:34:51 2017 +0200 |
tree | 6f2d59fd480125984eef99d22941edc37f23d31c | |
parent | 292eff0c5aacb8531d65509679b6c29eae8dc22a [diff] [blame] |
patch 8.0.0709: libvterm cannot use vsnprintf() Problem: Libvterm cannot use vsnprintf(), it does not exist in C90. Solution: Use vim_vsnprintf() instead.
diff --git a/src/netbeans.c b/src/netbeans.c index fb4cb76..93563b1 100644 --- a/src/netbeans.c +++ b/src/netbeans.c
@@ -2301,7 +2301,7 @@ va_list ap; va_start(ap, cmd); - vim_vsnprintf(buf, sizeof(buf), cmd, ap, NULL); + vim_vsnprintf(buf, sizeof(buf), cmd, ap); va_end(ap); nbdebug((" COLONCMD %s\n", buf));