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

petdance at svn.parrot.org petdance at svn.parrot.org
Wed Apr 7 04:39:41 UTC 2010


Author: petdance
Date: Wed Apr  7 04:39:41 2010
New Revision: 45409
URL: https://trac.parrot.org/parrot/changeset/45409

Log:
fixed the specifications of the __attribute__format__ macro

Modified:
   trunk/include/parrot/compiler.h

Modified: trunk/include/parrot/compiler.h
==============================================================================
--- trunk/include/parrot/compiler.h	Tue Apr  6 05:22:35 2010	(r45408)
+++ trunk/include/parrot/compiler.h	Wed Apr  7 04:39:41 2010	(r45409)
@@ -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