summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-04-22 22:57:54 +0000
committerNicholas Clark <nick@ccl4.org>2007-04-22 22:57:54 +0000
commit222206208128104dd9837dda856fd43c0f121508 (patch)
tree68f934808dee8902f549f36c0e3af1823c17d9d6 /pp_ctl.c
parentdc0a77c9b9af15fb3c72399a7235e96c7033cc43 (diff)
downloadperl-222206208128104dd9837dda856fd43c0f121508.tar.gz
Fix problems caused by downsizing in change 31017. (Which don't show
up until you test on a "real" architecture) p4raw-id: //depot/perl@31023
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 861e8a5a15..0538d6f7cd 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -2908,7 +2908,7 @@ S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq)
SAVESPTR(PL_unitcheckav);
PL_unitcheckav = newAV();
SAVEFREESV(PL_unitcheckav);
- SAVEI32(PL_error_count);
+ SAVEI8(PL_error_count);
#ifdef PERL_MAD
SAVEBOOL(PL_madskills);