Skip to content

Commit

Permalink
fix bogus declaration (copy&pasto)
Browse files Browse the repository at this point in the history
  • Loading branch information
FROGGS committed Jul 7, 2014
1 parent 0054a6a commit 6fda5ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/nativecall.c
Expand Up @@ -754,7 +754,7 @@ MVMObject * MVM_nativecall_invoke(MVMThreadContext *tc, MVMObject *res_type,

MVMObject * MVM_nativecall_cast(MVMThreadContext *tc, MVMObject *target_type, MVMObject *source) {
MVMObject *result = NULL;
void *cpointer_body = cpointer_body = unmarshal_cpointer(tc, source);
void *cpointer_body = unmarshal_cpointer(tc, source);

if (!source) return target_type;

Expand Down

0 comments on commit 6fda5ad

Please sign in to comment.