summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorScott Henry <scotth@sgi.com>1998-09-29 10:38:46 -0700
committerGurusamy Sarathy <gsar@cpan.org>1998-10-02 04:10:47 +0000
commit97cc44eb3354a060109750a447392fc7db9722c4 (patch)
treed3dfbb7a94824b097376e66d5469d9d49ab474c1 /sv.c
parente44f695ee9be4f523999589b52c7c8e9ddc1bed9 (diff)
downloadperl-97cc44eb3354a060109750a447392fc7db9722c4.tar.gz
use Off_t to permit 64-bit seek()
Date: 29 Sep 1998 17:38:46 -0700 Message-ID: <yd8lnn2zb6x.fsf_-_@hoshi.engr.sgi.com> Subject: Re: [PATCH] 5.005_02: Configure "Massive Attack" -- Date: 28 Sep 1998 18:55:37 -0700 Message-ID: <yd8ogrz1y3q.fsf@hoshi.engr.sgi.com> Subject: Re: [PATCH] 5.005_51: Configure "Massive Attack" p4raw-id: //depot/perl@1915
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 0495e8acf5..ec224a38b5 100644
--- a/sv.c
+++ b/sv.c
@@ -698,7 +698,7 @@ sv_upgrade(register SV *sv, U32 mt)
cur = 0;
len = 0;
nv = SvNVX(sv);
- iv = I_32(nv);
+ iv = (IV)nv;
magic = 0;
stash = 0;
del_XNV(SvANY(sv));