Line 0
Link Here
|
|
|
1 |
--- ./src/include/spf_log.h.orig Sat Sep 13 22:04:44 2008 |
2 |
+++ ./src/include/spf_log.h Tue Feb 7 17:01:49 2012 |
3 |
@@ -60,10 +60,10 @@ |
4 |
|
5 |
#if defined( __STDC_VERSION__ ) && __STDC_VERSION__ >= 199901L |
6 |
|
7 |
-#define SPF_errorf(format, ... ) SPF_errorx( __FILE__, __LINE__, format, __VA_ARGS__ ) |
8 |
-#define SPF_warningf(format, ... ) SPF_warningx( __FILE__, __LINE__, format, __VA_ARGS__ ) |
9 |
-#define SPF_infof(format, ... ) SPF_infox( __FILE__, __LINE__, format, __VA_ARGS__ ) |
10 |
-#define SPF_debugf(format, ... ) SPF_debugx( __FILE__, __LINE__, format, __VA_ARGS__ ) |
11 |
+#define SPF_errorf( ... ) SPF_errorx( __FILE__, __LINE__, __VA_ARGS__ ) |
12 |
+#define SPF_warningf( ... ) SPF_warningx( __FILE__, __LINE__, __VA_ARGS__ ) |
13 |
+#define SPF_infof( ... ) SPF_infox( __FILE__, __LINE__, __VA_ARGS__ ) |
14 |
+#define SPF_debugf( ... ) SPF_debugx( __FILE__, __LINE__, __VA_ARGS__ ) |
15 |
|
16 |
#elif defined( __GNUC__ ) |
17 |
|