[svn:parrot] r40790 - trunk/src

mikehh at svn.parrot.org mikehh at svn.parrot.org
Tue Aug 25 20:48:30 UTC 2009


Author: mikehh
Date: Tue Aug 25 20:48:27 2009
New Revision: 40790
URL: https://trac.parrot.org/parrot/changeset/40790

Log:
fix codetest failure - macros used in correct position - src/oo.c

Modified:
   trunk/src/oo.c

Modified: trunk/src/oo.c
==============================================================================
--- trunk/src/oo.c	Tue Aug 25 18:50:11 2009	(r40789)
+++ trunk/src/oo.c	Tue Aug 25 20:48:27 2009	(r40790)
@@ -372,8 +372,8 @@
 static PMC *
 get_pmc_proxy(PARROT_INTERP, INTVAL type)
 {
-    PMC * type_class;
     ASSERT_ARGS(get_pmc_proxy)
+    PMC * type_class;
 
     /* Check if not a PMC or invalid type number */
     if (type > interp->n_vtable_max || type <= 0)


More information about the parrot-commits mailing list