diff options
author | David Mitchell <davem@iabyn.com> | 2010-09-08 14:44:04 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2010-09-08 14:48:30 +0100 |
commit | 89e00a7cf0897e993e1c67663e2673b123f5ce8c (patch) | |
tree | 4ca99d970432a2864dd4f8b23f842ab93eb91a74 | |
parent | df530c37b924f51b6982d30ba7e0934eb75f2b6d (diff) | |
download | perl-89e00a7cf0897e993e1c67663e2673b123f5ce8c.tar.gz |
swap round a confusing #ifndef ... #else ...
-rw-r--r-- | pp_ctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 { |