summaryrefslogtreecommitdiff
blob: 0d113732b156d2f099a8b56588fd08bf35cedab0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- qgo-0.2/qgo/src/wavfile.c.orig	2004-06-08 09:20:12.783379736 -0400
+++ qgo-0.2/qgo/src/wavfile.c	2004-06-08 09:20:25.304476240 -0400
@@ -134,6 +134,10 @@
 static char emsg[2048];
 
 
+static void
+_v_erf(const char *format,va_list ap) {
+	vsprintf(emsg,format,ap);		/* Capture message into emsg[] */
+}
 
 /*
  * Error reporting function for this source module:
@@ -150,10 +154,6 @@
 }
 
 
-static void
-_v_erf(const char *format,va_list ap) {
-	vsprintf(emsg,format,ap);		/* Capture message into emsg[] */
-}