From 7979a2d778c4211f7d37681fe8ebc8ab204c60a3 Mon Sep 17 00:00:00 2001 From: "Michael H. Hind" Date: Tue, 30 Nov 2010 10:09:16 +0000 Subject: [PATCH] fix codetest failure - linelength --- src/namespace.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/namespace.c b/src/namespace.c index 436017003e..2bd2b0b956 100644 --- a/src/namespace.c +++ b/src/namespace.c @@ -328,7 +328,8 @@ store_sub_in_multi(PARROT_INTERP, ARGIN(PMC *sub_pmc), ARGIN(PMC *ns)) /* is there an existing MultiSub PMC? or do we need to create one? */ if (PMC_IS_NULL(multisub)) { - multisub = Parrot_pmc_new(interp, Parrot_hll_get_ctx_HLL_type(interp, enum_class_MultiSub)); + multisub = Parrot_pmc_new(interp, + Parrot_hll_get_ctx_HLL_type(interp, enum_class_MultiSub)); /* we have to push the sub onto the MultiSub before we try to store it because storing requires information from the sub */ VTABLE_push_pmc(interp, multisub, sub_pmc);