Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix copy-pasto (void function returning value).
cognominal++ for reporting.
  • Loading branch information
jnthn committed Mar 17, 2013
1 parent 4fd9292 commit 39d7d37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guts/multi_dispatch.c
Expand Up @@ -95,7 +95,7 @@ void add_to_cache(PARROT_INTERP, NQP_md_cache *cache, PMC *capture, INTVAL num_a

/* See if there are any nameds */
if (capture->vtable->base_type != enum_class_CallContext)
return NULL;
return;
GETATTR_CallContext_hash(interp, capture, nameds);
has_nameds = nameds && Parrot_hash_size(interp, nameds) ? 1 : 0;

Expand Down

0 comments on commit 39d7d37

Please sign in to comment.