summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-03-20 15:21:28 +0100
committermadmaxoft <github@xoft.cz>2014-03-20 15:21:28 +0100
commit93d4cbb989abff814800a11d8f23caa0de83e157 (patch)
treefcad441dd22f91d859fd7ea915b848e53cbe7215
parentFixed code style after recent merge. (diff)
downloadcuberite-93d4cbb989abff814800a11d8f23caa0de83e157.tar
cuberite-93d4cbb989abff814800a11d8f23caa0de83e157.tar.gz
cuberite-93d4cbb989abff814800a11d8f23caa0de83e157.tar.bz2
cuberite-93d4cbb989abff814800a11d8f23caa0de83e157.tar.lz
cuberite-93d4cbb989abff814800a11d8f23caa0de83e157.tar.xz
cuberite-93d4cbb989abff814800a11d8f23caa0de83e157.tar.zst
cuberite-93d4cbb989abff814800a11d8f23caa0de83e157.zip
-rw-r--r--Tools/ProtoProxy/Globals.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Tools/ProtoProxy/Globals.h b/Tools/ProtoProxy/Globals.h
index 0724d3a52..e2f5aa860 100644
--- a/Tools/ProtoProxy/Globals.h
+++ b/Tools/ProtoProxy/Globals.h
@@ -22,6 +22,8 @@
#define ALIGN_8
#define ALIGN_16
+ #define FORMATSTRING(formatIndex, va_argsIndex)
+
#elif defined(__GNUC__)
// TODO: Can GCC explicitly mark classes as abstract (no instances can be created)?
@@ -38,7 +40,7 @@
// Some portability macros :)
#define stricmp strcasecmp
- #define FORMATSTRING(formatIndex,va_argsIndex)
+ #define FORMATSTRING(formatIndex, va_argsIndex)
#else
@@ -61,7 +63,7 @@
#define ALIGN_16
*/
- #define FORMATSTRING(formatIndex,va_argsIndex) __attribute__((format (printf, formatIndex, va_argsIndex)))
+ #define FORMATSTRING(formatIndex, va_argsIndex) __attribute__((format (printf, formatIndex, va_argsIndex)))
#endif