summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2010-09-08 14:44:04 +0100
committerDavid Mitchell <davem@iabyn.com>2010-09-08 14:48:30 +0100
commit89e00a7cf0897e993e1c67663e2673b123f5ce8c (patch)
tree4ca99d970432a2864dd4f8b23f842ab93eb91a74 /pp_ctl.c
parentdf530c37b924f51b6982d30ba7e0934eb75f2b6d (diff)
downloadperl-89e00a7cf0897e993e1c67663e2673b123f5ce8c.tar.gz
swap round a confusing #ifndef ... #else ...
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 9673d1290f..11755ca700 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -1959,10 +1959,10 @@ PP(pp_enteriter)
SVs_PADSTALE, SVs_PADSTALE);
}
SAVEPADSVANDMORTALIZE(PL_op->op_targ);
-#ifndef USE_ITHREADS
- itervar = &PAD_SVl(PL_op->op_targ); /* "my" variable */
-#else
+#ifdef USE_ITHREADS
itervar = PL_comppad;
+#else
+ itervar = &PAD_SVl(PL_op->op_targ); /* "my" variable */
#endif
}
else {