diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-04-12 20:45:21 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-04-12 20:45:21 +0000 |
commit | 9da243cec64377f6d729e25391ec8c1525f1a146 (patch) | |
tree | aaa47c5e50c60c3e8d5ba8348beb75829c5b555b /pp_ctl.c | |
parent | 5892a4d46c7c2069892f8918ef1f02a94c09a1a4 (diff) | |
download | perl-9da243cec64377f6d729e25391ec8c1525f1a146.tar.gz |
PL_madskills is a bool, so save it as one (else Solaris rightly
SIGBUSes)
p4raw-id: //depot/perl@30939
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2911,7 +2911,7 @@ S_doeval(pTHX_ int gimme, OP** startop, CV* outside, U32 seq) SAVEI32(PL_error_count); #ifdef PERL_MAD - SAVEI32(PL_madskills); + SAVEBOOL(PL_madskills); PL_madskills = 0; #endif |