[svn:parrot] r49439 - in trunk/src: . runcore
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Mon Oct 4 07:53:18 UTC 2010
Author: mikehh
Date: Mon Oct 4 07:53:18 2010
New Revision: 49439
URL: https://trac.parrot.org/parrot/changeset/49439
Log:
fix codetest failures - remove space after opening parenthesis and
from before closing parenthesis, and forgot to update copyright
Modified:
trunk/src/runcore/profiling.c
trunk/src/sub.c
Modified: trunk/src/runcore/profiling.c
==============================================================================
--- trunk/src/runcore/profiling.c Mon Oct 4 07:44:13 2010 (r49438)
+++ trunk/src/runcore/profiling.c Mon Oct 4 07:53:18 2010 (r49439)
@@ -1,5 +1,5 @@
/*
-Copyright (C) 2009, Parrot Foundation.
+Copyright (C) 2009-2010, Parrot Foundation.
$Id$
=head1 NAME
Modified: trunk/src/sub.c
==============================================================================
--- trunk/src/sub.c Mon Oct 4 07:44:13 2010 (r49438)
+++ trunk/src/sub.c Mon Oct 4 07:53:18 2010 (r49439)
@@ -235,7 +235,7 @@
current_annotation = pc - base_pc;
/* assert pc is in correct segment */
- PARROT_ASSERT( base_pc <= pc && pc <= base_pc + sub->seg->base.size );
+ PARROT_ASSERT(base_pc <= pc && pc <= base_pc + sub->seg->base.size);
for (i = op = 0; op < debug_size; ++i) {
op_info_t * const op_info = sub->seg->op_info_table[*base_pc];
More information about the parrot-commits
mailing list