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

mikehh at svn.parrot.org mikehh at svn.parrot.org
Tue Sep 8 00:17:22 UTC 2009


Author: mikehh
Date: Tue Sep  8 00:17:21 2009
New Revision: 41147
URL: https://trac.parrot.org/parrot/changeset/41147

Log:
fix codetest failure - unerapped macro argument

Modified:
   trunk/include/parrot/context.h

Modified: trunk/include/parrot/context.h
==============================================================================
--- trunk/include/parrot/context.h	Tue Sep  8 00:16:54 2009	(r41146)
+++ trunk/include/parrot/context.h	Tue Sep  8 00:17:21 2009	(r41147)
@@ -32,7 +32,7 @@
 
 /* Manually inlined macros. Used in optimised builds */
 
-#  define __C(c) (PMC_data_typed(c, Parrot_Context*))
+#  define __C(c) (PMC_data_typed((c), Parrot_Context*))
 
 #  define CTX_REG_NUM(p, x) (__C(p)->bp.regs_n[-1L - (x)])
 #  define CTX_REG_INT(p, x) (__C(p)->bp.regs_i[(x)])


More information about the parrot-commits mailing list