diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-04-22 22:57:54 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-04-22 22:57:54 +0000 |
commit | 222206208128104dd9837dda856fd43c0f121508 (patch) | |
tree | 68f934808dee8902f549f36c0e3af1823c17d9d6 /pp_ctl.c | |
parent | dc0a77c9b9af15fb3c72399a7235e96c7033cc43 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |