Author: infinoid
Date: Fri Dec 5 22:53:33 2008
New Revision: 33543
Modified:
trunk/languages/perl6/src/pmc/perl6multisub.pmc
Log:
[CAGE] Fix a linelength.t failure in perl6multisub.pmc
Modified: trunk/languages/perl6/src/pmc/perl6multisub.pmc
==============================================================================
--- trunk/languages/perl6/src/pmc/perl6multisub.pmc (original)
+++ trunk/languages/perl6/src/pmc/perl6multisub.pmc Fri Dec 5 22:53:33 2008
@@ -336,7 +336,8 @@
/* Add it to graph node, and initialize list of edges. */
graph[insert_pos] = mem_allocate_zeroed_typed(candidate_graph_node);
graph[insert_pos]->info = info;
- graph[insert_pos]->edges = mem_allocate_n_zeroed_typed(num_candidates,
candidate_graph_node*);
+ graph[insert_pos]->edges = mem_allocate_n_zeroed_typed(
+ num_candidates, candidate_graph_node*);
insert_pos++;
}