Skip to content

Commit

Permalink
Use size_t instead of INTVAL for iterating over keys.
Browse files Browse the repository at this point in the history
  • Loading branch information
bacek committed Jan 31, 2011
1 parent c2ffe55 commit 01bf2d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/packfile/api.c
Expand Up @@ -3791,7 +3791,8 @@ PackFile_Annotations_dump(PARROT_INTERP, ARGIN(const PackFile_Segment *seg))
{
ASSERT_ARGS(PackFile_Annotations_dump)
const PackFile_Annotations * const self = (const PackFile_Annotations *)seg;
INTVAL i, j;
INTVAL i;
size_t j;

default_dump_header(interp, (const PackFile_Segment *)self);

Expand Down

0 comments on commit 01bf2d8

Please sign in to comment.