From baf14971221f5695092c2324d55b6788c98cc87f Mon Sep 17 00:00:00 2001
From: Mathieu L Bouchard <matju@artengine.ca>
Date: Wed, 27 Aug 2014 20:50:19 -0400
Subject: [PATCH] fix CHECK_VGUI_ARGS (didn't compile when #defined)

---
 pd/src/m_pd.h | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/pd/src/m_pd.h b/pd/src/m_pd.h
index 10acfefad..63b93149e 100644
--- a/pd/src/m_pd.h
+++ b/pd/src/m_pd.h
@@ -13,7 +13,7 @@ extern "C" {
 #define PD_MAJOR_VERSION 0
 #define PD_MINOR_VERSION 42
 #define PD_BUGFIX_VERSION 7
-#define PD_TEST_VERSION "20140813"
+#define PD_TEST_VERSION "20140814"
 #define PDL2ORK
 
 /* old name for "MSW" flag -- we have to take it for the sake of many old
@@ -648,9 +648,8 @@ typedef void (*t_guicallbackfn)(t_gobj *client, t_glist *glist);
 EXTERN void sys_vgui(const char *fmt, ...)
     __attribute__((format(printf,1,2)));
 EXTERN void sys_vguid(const char *file, int line, const char *fmt, ...)
-    __attribute__((format(printf,1,2)));
-EXTERN void sys_vvguid(const char *file, int line, const char *fmt, va_list)
     __attribute__((format(printf,3,4)));
+EXTERN void sys_vvguid(const char *file, int line, const char *fmt, va_list);
 #else
 EXTERN void sys_vgui(const char *fmt, ...);
 EXTERN void sys_vguid(const char *file, int line, const char *fmt, ...);
-- 
GitLab