From: Nicholas Clark Date: Thu, 12 Apr 2007 20:45:21 +0000 (+0000) Subject: PL_madskills is a bool, so save it as one (else Solaris rightly X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9da243cec64377f6d729e25391ec8c1525f1a146;p=p5sagit%2Fp5-mst-13.2.git PL_madskills is a bool, so save it as one (else Solaris rightly SIGBUSes) p4raw-id: //depot/perl@30939 --- diff --git a/pp_ctl.c b/pp_ctl.c index 63b7039..6f91d02 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