summaryrefslogtreecommitdiff
path: root/pad.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2007-04-21 21:47:34 +0000
committerNicholas Clark <nick@ccl4.org>2007-04-21 21:47:34 +0000
commit8bbe96d720ac7fdd2c32da6f4dd8032b43985afd (patch)
tree795c0083d7d10763dbdaf1cba115d8d961657207 /pad.c
parent98246f1e0d28af5cceb60df6c77f9cfe2dc0d85d (diff)
downloadperl-8bbe96d720ac7fdd2c32da6f4dd8032b43985afd.tar.gz
Various variables in intrpvar.h and thrdvar.h are considerably larger
than they need to be. p4raw-id: //depot/perl@31017
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 8560d9aa47..1e0217c7b0 100644
--- a/pad.c
+++ b/pad.c
@@ -168,7 +168,7 @@ Perl_pad_new(pTHX_ int flags)
SAVEI32(PL_comppad_name_fill);
SAVEI32(PL_min_intro_pending);
SAVEI32(PL_max_intro_pending);
- SAVEI32(PL_cv_has_eval);
+ SAVEBOOL(PL_cv_has_eval);
if (flags & padnew_SAVESUB) {
SAVEI32(PL_pad_reset_pending);
}