summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorSpider Boardman <spider@orb.nashua.nh.us>1998-03-04 21:49:46 -0500
committerGurusamy Sarathy <gsar@cpan.org>1998-03-05 19:54:49 +0000
commit9002cb76ec83ef7f7257db6ea6e60d6a200d7416 (patch)
treea188f25e72fdd7abecfcbcbfd7230f16d133c332 /scope.c
parent7766148a84514045e76c63eb79dcff7b7c84702d (diff)
downloadperl-9002cb76ec83ef7f7257db6ea6e60d6a200d7416.tar.gz
[win32] maintpatch
Message-Id: <199803050749.CAA15206@Orb.Nashua.NH.US> Subject: [PATCH] 5.004_04 +MAINT_TRIAL_1 broken when sizeof(int) != sizeof(void p4raw-id: //depot/win32/perl@786
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scope.c b/scope.c
index 65ac0b57ec..9d4573b2e2 100644
--- a/scope.c
+++ b/scope.c
@@ -727,7 +727,7 @@ leave_scope(I32 base)
goto restore_sv;
case SAVEt_HELEM: /* hash element */
value = (SV*)SSPOPPTR;
- sv = (SV*)SSPOPINT;
+ sv = (SV*)SSPOPPTR;
hv = (HV*)SSPOPPTR;
ptr = hv_fetch_ent(hv, sv, 1, 0);
ptr = &HeVAL((HE*)ptr);