diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-08-25 09:25:21 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-08-25 09:25:21 -0700 |
commit | 4f12661db5afd43f32ff0bb2d30a0eb3234f2fa3 (patch) | |
tree | f9bac8d62184a2a84b34308f95249b127c01ed57 /dist | |
parent | 71ba8c50f1810bb0a513a7156198036c67261f97 (diff) | |
download | perl-4f12661db5afd43f32ff0bb2d30a0eb3234f2fa3.tar.gz |
Dumper.xs: Suppress compiler warning
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Data-Dumper/Dumper.pm | 4 | ||||
-rw-r--r-- | dist/Data-Dumper/Dumper.xs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dist/Data-Dumper/Dumper.pm b/dist/Data-Dumper/Dumper.pm index 748dd545f4..9335d034c1 100644 --- a/dist/Data-Dumper/Dumper.pm +++ b/dist/Data-Dumper/Dumper.pm @@ -9,7 +9,7 @@ package Data::Dumper; -$VERSION = '2.132'; # Don't forget to set version and release date in POD! +$VERSION = '2.133'; # Don't forget to set version and release date in POD! #$| = 1; @@ -1297,7 +1297,7 @@ modify it under the same terms as Perl itself. =head1 VERSION -Version 2.132 (August 20 2011) +Version 2.133 (July 20 2011) =head1 SEE ALSO diff --git a/dist/Data-Dumper/Dumper.xs b/dist/Data-Dumper/Dumper.xs index 2c249db9dd..cf0717e435 100644 --- a/dist/Data-Dumper/Dumper.xs +++ b/dist/Data-Dumper/Dumper.xs @@ -814,7 +814,7 @@ DD_dump(pTHX_ SV *val, const char *name, STRLEN namelen, SV *retval, HV *seenhv, warn("Encountered CODE ref, using dummy placeholder"); } else { - warn("cannot handle ref type %ld", realtype); + warn("cannot handle ref type %d", (int)realtype); } if (realpack && !no_bless) { /* free blessed allocs */ |