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

mikehh at svn.parrot.org mikehh at svn.parrot.org
Wed Apr 7 08:20:44 UTC 2010


Author: mikehh
Date: Wed Apr  7 08:20:43 2010
New Revision: 45414
URL: https://trac.parrot.org/parrot/changeset/45414

Log:
fix codetest failure - there should be one space or a newline after a comma (should have added the spaces in the previous commit)

Modified:
   trunk/include/parrot/compiler.h

Modified: trunk/include/parrot/compiler.h
==============================================================================
--- trunk/include/parrot/compiler.h	Wed Apr  7 08:12:28 2010	(r45413)
+++ trunk/include/parrot/compiler.h	Wed Apr  7 08:20:43 2010	(r45414)
@@ -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