summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorBrian Fraser <fraserbn@gmail.com>2014-02-04 00:38:39 -0300
committerBrian Fraser <fraserbn@gmail.com>2014-02-05 04:32:47 -0300
commitdc6d7f5c0d35ddfd7e124c5143d9f0309ca9a149 (patch)
tree9f75f68a9742d7a951cdd6a80c45272311e21caf /pp_ctl.c
parent83d7d07d621fa8abcdb4e3b0a7a6cd7fd002dafa (diff)
downloadperl-dc6d7f5c0d35ddfd7e124c5143d9f0309ca9a149.tar.gz
Avoid compiler warnings by consistently using #ifdef instead of plain #if
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index d0a56bab84..4828fbd6d8 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -153,7 +153,7 @@ PP(pp_regcomp)
modified by get-magic), to avoid incorrectly setting the
RXf_TAINTED flag with RX_TAINT_on further down. */
TAINT_set(was_tainted);
-#if NO_TAINT_SUPPORT
+#ifdef NO_TAINT_SUPPORT
PERL_UNUSED_VAR(was_tainted);
#endif
}