summaryrefslogtreecommitdiff
path: root/pad.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-11-26 21:10:57 +0000
committerNicholas Clark <nick@ccl4.org>2008-11-26 21:10:57 +0000
commitf0cb02e3e781e9ee7442d6b61ec0330b7fb95a52 (patch)
tree526ded723f46402ca573319d64c7ab27b9412dc2 /pad.c
parent82af08ae5f1a7d2e5deb69172b40d3168c149528 (diff)
downloadperl-f0cb02e3e781e9ee7442d6b61ec0330b7fb95a52.tar.gz
The vestigial PL_pad_reset_pending can actually be bool, rather than
I32. This permits some space saving rejigging of the interpreter struct. p4raw-id: //depot/perl@34930
Diffstat (limited to 'pad.c')
-rw-r--r--pad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pad.c b/pad.c
index bf85118475..715d361acd 100644
--- a/pad.c
+++ b/pad.c
@@ -180,7 +180,7 @@ Perl_pad_new(pTHX_ int flags)
SAVEI32(PL_max_intro_pending);
SAVEBOOL(PL_cv_has_eval);
if (flags & padnew_SAVESUB) {
- SAVEI32(PL_pad_reset_pending);
+ SAVEBOOL(PL_pad_reset_pending);
}
}
}