Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix compiler warning
  • Loading branch information
bacek committed Nov 17, 2010
1 parent 111d25f commit 525f058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gc/gc_ms2.c
Expand Up @@ -1012,7 +1012,7 @@ gc_ms2_iterate_live_strings(PARROT_INTERP,

POINTER_ARRAY_ITER(self->strings,
STRING *s = &((string_alloc_struct *)ptr)->str;
callback(interp, s, data);
callback(interp, (Buffer *)s, data);
);
}

Expand Down

0 comments on commit 525f058

Please sign in to comment.