Skip to content

Commit

Permalink
Correct incorrect operand order in assignment in CArray.c.
Browse files Browse the repository at this point in the history
  • Loading branch information
arnsholt committed Apr 21, 2012
1 parent 05b65e9 commit 314814f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/6model/reprs/CArray.c
Expand Up @@ -124,7 +124,7 @@ static void copy_to(PARROT_INTERP, STable *st, void *src, void *dest) {
memcpy(dest_body->storage, src_body->storage, alsize);
}
else {
src_body->storage = dest_body->storage;
dest_body->storage = src_body->storage;
}
dest_body->allocated = src_body->allocated;
dest_body->elems = src_body->elems;
Expand Down

0 comments on commit 314814f

Please sign in to comment.