[svn:parrot] r41405 - trunk/src/pmc

bacek at svn.parrot.org bacek at svn.parrot.org
Tue Sep 22 11:04:51 UTC 2009


Author: bacek
Date: Tue Sep 22 11:04:44 2009
New Revision: 41405
URL: https://trac.parrot.org/parrot/changeset/41405

Log:
[cage] Fix linelength codestd test

Modified:
   trunk/src/pmc/continuation.pmc

Modified: trunk/src/pmc/continuation.pmc
==============================================================================
--- trunk/src/pmc/continuation.pmc	Tue Sep 22 10:23:38 2009	(r41404)
+++ trunk/src/pmc/continuation.pmc	Tue Sep 22 11:04:44 2009	(r41405)
@@ -187,7 +187,9 @@
         cc->address    = pos;
         cc->runloop_id = INTERP->current_runloop_id;
 
-        if ((pos >= cc->seg->base.data) && (pos < (cc->seg->base.data + cc->seg->base.size) && (*pos == PARROT_OP_get_results_pc)))
+        if ((pos >= cc->seg->base.data)
+            && (pos < (cc->seg->base.data + cc->seg->base.size)
+            && (*pos == PARROT_OP_get_results_pc)))
             cc->current_results = pos;
         else
             cc->current_results = NULL;


More information about the parrot-commits mailing list