summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-11-14 17:38:32 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-11-14 17:38:32 +0000
commit4265b575712fd23c947cb9e96cb5215190d6fae8 (patch)
treea4cd6ba34e290f2b266c61cd8dbd11b63f2b095e /sv.c
parented094fafab5cc8979a919ec8755493543b6bddf5 (diff)
downloadperl-4265b575712fd23c947cb9e96cb5215190d6fae8.tar.gz
fix problem pointer casts
p4raw-id: //depot/perl@4583
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 475bd22548..8ab6d8f6ad 100644
--- a/sv.c
+++ b/sv.c
@@ -1704,7 +1704,7 @@ Perl_sv_2uv(pTHX_ register SV *sv)
}
DEBUG_c(PerlIO_printf(Perl_debug_log, "0x%"UVxf" 2uv(%"UVuf")\n",
- (UV)sv,SvUVX(sv)));
+ PTR2UV(sv),SvUVX(sv)));
return SvIsUV(sv) ? SvUVX(sv) : (UV)SvIVX(sv);
}