From 9da243cec64377f6d729e25391ec8c1525f1a146 Mon Sep 17 00:00:00 2001 From: Nicholas Clark Date: Thu, 12 Apr 2007 20:45:21 +0000 Subject: [PATCH] PL_madskills is a bool, so save it as one (else Solaris rightly SIGBUSes) p4raw-id: //depot/perl@30939 --- pp_ctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.7.4