summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-04-12 20:45:21 +0000
committerNicholas Clark <nick@ccl4.org>2007-04-12 20:45:21 +0000
commit9da243cec64377f6d729e25391ec8c1525f1a146 (patch)
treeaaa47c5e50c60c3e8d5ba8348beb75829c5b555b /pp_ctl.c
parent5892a4d46c7c2069892f8918ef1f02a94c09a1a4 (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 63b7039257..6f91d02018 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -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