[svn:parrot] r45413 - trunk/include/parrot

mikehh at svn.parrot.org mikehh at svn.parrot.org
Wed Apr 7 08:12:28 UTC 2010


Author: mikehh
Date: Wed Apr  7 08:12:28 2010
New Revision: 45413
URL: https://trac.parrot.org/parrot/changeset/45413

Log:
fix codetest failure - unwrapped macro arguments

Modified:
   trunk/include/parrot/compiler.h

Modified: trunk/include/parrot/compiler.h
==============================================================================
--- trunk/include/parrot/compiler.h	Wed Apr  7 05:21:25 2010	(r45412)
+++ trunk/include/parrot/compiler.h	Wed Apr  7 08:12:28 2010	(r45413)
@@ -25,7 +25,7 @@
 #  endif
 #endif
 #ifdef HASATTRIBUTE_FORMAT
-#  define __attribute__format__(x, y, z)    __attribute__((format(x,y,z)))
+#  define __attribute__format__(x, y, z)    __attribute__((format((x),(y),(z))))
 #endif
 #ifdef HASATTRIBUTE_MALLOC
 #  define __attribute__malloc__             __attribute__((__malloc__))


More information about the parrot-commits mailing list