[svn:parrot] r47991 - branches/gsoc_threads/src
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Mon Jul 5 00:35:24 UTC 2010
Author: mikehh
Date: Mon Jul 5 00:35:23 2010
New Revision: 47991
URL: https://trac.parrot.org/parrot/changeset/47991
Log:
fix codetest failure - parentheses should not have space immediately after the opening parenthesis nor immediately before the closing parenthesis
Modified:
branches/gsoc_threads/src/scheduler.c
Modified: branches/gsoc_threads/src/scheduler.c
==============================================================================
--- branches/gsoc_threads/src/scheduler.c Mon Jul 5 00:30:28 2010 (r47990)
+++ branches/gsoc_threads/src/scheduler.c Mon Jul 5 00:35:23 2010 (r47991)
@@ -116,7 +116,7 @@
Parrot_cx_check_tasks(PARROT_INTERP, ARGMOD(PMC *scheduler))
{
ASSERT_ARGS(Parrot_cx_check_tasks)
- if ( Parrot_alarm_check(&(interp->last_alarm))
+ if (Parrot_alarm_check(&(interp->last_alarm))
|| SCHEDULER_wake_requested_TEST(scheduler)) {
Parrot_cx_handle_tasks(interp, scheduler);
}
More information about the parrot-commits
mailing list