Skip to content

Commit

Permalink
Remove unnecessary cast
Browse files Browse the repository at this point in the history
  • Loading branch information
petdance committed Apr 10, 2012
1 parent 5f6ac7a commit f17bd2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packfile/api.c
Expand Up @@ -2502,7 +2502,7 @@ read_pbc_file_bytes_handle(PARROT_INTERP, PIOHANDLE io, INTVAL program_size)
"Could not reallocate buffer while reading packfile from PIO.\n"); "Could not reallocate buffer while reading packfile from PIO.\n");
} }


cursor = (char *)(program_code + program_size); cursor = program_code + program_size;
} }


return program_code; return program_code;
Expand Down

0 comments on commit f17bd2d

Please sign in to comment.