Skip to content

Commit

Permalink
Don't try to return a function that returns void
Browse files Browse the repository at this point in the history
  • Loading branch information
petdance committed Sep 20, 2011
1 parent 4fe04fa commit ba4bd62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/call/context.c
Expand Up @@ -421,7 +421,7 @@ allocate_registers(PARROT_INTERP, ARGIN(PMC *pmcctx), ARGIN(const UINTVAL *numbe
/* ctx.bp_ps points to S0, which has Px on the left */
ctx->bp_ps.regs_s = (STRING **)((char *)ctx->registers + size_nip);

return clear_regs(interp, ctx);
clear_regs(interp, ctx);
}


Expand Down

0 comments on commit ba4bd62

Please sign in to comment.