summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2010-01-08 19:16:07 +0000
committerDavid Mitchell <davem@iabyn.com>2010-01-08 19:16:07 +0000
commit7e9550e32a62377cc78f6760dfba2fdc47d4fe51 (patch)
tree85cdeb89e0755042a46c90607ae84e22ab183d41 /sv.c
parentcbe56f1dc5efa2a32e6943a97f6928e7eef1b1f6 (diff)
downloadperl-7e9550e32a62377cc78f6760dfba2fdc47d4fe51.tar.gz
unify #ifdef indent on both sides of PERL_IMPLICIT_SYS in perl_clone()
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sv.c b/sv.c
index fb82cafb51..d4f3153dea 100644
--- a/sv.c
+++ b/sv.c
@@ -11854,7 +11854,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
S_visit(proto_perl, do_mark_cloneable_stash, SVt_PVHV, SVTYPEMASK);
PERL_SET_THX(my_perl);
-# ifdef DEBUGGING
+# ifdef DEBUGGING
PoisonNew(my_perl, 1, PerlInterpreter);
PL_op = NULL;
PL_curcop = NULL;
@@ -11867,9 +11867,9 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
PL_sig_pending = 0;
PL_parser = NULL;
Zero(&PL_debug_pad, 1, struct perl_debug_pad);
-# else /* !DEBUGGING */
+# else /* !DEBUGGING */
Zero(my_perl, 1, PerlInterpreter);
-# endif /* DEBUGGING */
+# endif /* DEBUGGING */
#endif /* PERL_IMPLICIT_SYS */
param->flags = flags;
param->proto_perl = proto_perl;