Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
The precedence game. Some days you lose it.
  • Loading branch information
jnthn committed Oct 2, 2010
1 parent bab7ae7 commit 5328d08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/metamodel/reprs/P6opaque.c
Expand Up @@ -157,7 +157,7 @@ static PMC * instance_of(PARROT_INTERP, PMC *self, PMC *WHAT) {
obj = mem_allocate_zeroed_typed(P6opaqueInstance);
obj->common.stable = STABLE_PMC(WHAT);
obj->slots = mem_sys_allocate_zeroed(sizeof(PMC *) *
repr->num_slots == 0 ? 1 : repr->num_slots);
(repr->num_slots == 0 ? 1 : repr->num_slots));

return wrap_object(interp, obj);
}
Expand Down

0 comments on commit 5328d08

Please sign in to comment.