[svn:parrot] r40761 - branches/context_pmc3/src

bacek at svn.parrot.org bacek at svn.parrot.org
Mon Aug 24 11:50:47 UTC 2009


Author: bacek
Date: Mon Aug 24 11:50:46 2009
New Revision: 40761
URL: https://trac.parrot.org/parrot/changeset/40761

Log:
[cage] Actually return value from Parrot_cx_dec_recursion_depth

Modified:
   branches/context_pmc3/src/context.c

Modified: branches/context_pmc3/src/context.c
==============================================================================
--- branches/context_pmc3/src/context.c	Mon Aug 24 11:31:30 2009	(r40760)
+++ branches/context_pmc3/src/context.c	Mon Aug 24 11:50:46 2009	(r40761)
@@ -168,7 +168,7 @@
 {
     ASSERT_ARGS(Parrot_cx_dec_recursion_depth)
     Parrot_Context *c = Parrot_cx_get_context(interp, ctx);
-    --c->recursion_depth;
+    return --c->recursion_depth;
 }
 
 /*


More information about the parrot-commits mailing list