diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-26 05:24:00 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-26 05:24:00 +0000 |
commit | 5f56cddd7d02d4eaf77c11dfb507472f0aea4085 (patch) | |
tree | 33bc161d6db65530cc0c7326d9bc0e18480a723e /ext/Storable | |
parent | 76edffbb7dd94e6ba8144cded7b30b485ea7a531 (diff) | |
download | perl-5f56cddd7d02d4eaf77c11dfb507472f0aea4085.tar.gz |
More casting.
p4raw-id: //depot/perl@6837
Diffstat (limited to 'ext/Storable')
-rw-r--r-- | ext/Storable/Storable.xs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Storable/Storable.xs b/ext/Storable/Storable.xs index 046e2f701a..1b580cff31 100644 --- a/ext/Storable/Storable.xs +++ b/ext/Storable/Storable.xs @@ -1453,7 +1453,7 @@ static int store_scalar(stcxt_t *cxt, SV *sv) STORE_SCALAR(pv, len); TRACEME(("ok (scalar 0x%"UVxf" '%s', length = %"IVdf")", - PTR2UV(sv), SvPVX(sv), len)); + PTR2UV(sv), SvPVX(sv), (IV)len)); } else if (flags & SVp_NOK) { /* SvNOKp(sv) => double */ NV nv = SvNV(sv); |