summaryrefslogtreecommitdiff
path: root/pp.h
diff options
context:
space:
mode:
authorLukas Mai <l.mai@web.de>2017-06-24 14:57:36 +0200
committerLukas Mai <l.mai@web.de>2017-06-24 14:57:36 +0200
commit45d6bfc0a1065fd0bfd64d6de210fe08b16725f9 (patch)
treeaf6e5a5b2128e6b7f1eca50ea4aeddfa8b6f6c4a /pp.h
parent1fced1a2c6a67934990a50b61e729760a556308b (diff)
downloadperl-45d6bfc0a1065fd0bfd64d6de210fe08b16725f9.tar.gz
paranoia: parenthesize macro parameters
Diffstat (limited to 'pp.h')
-rw-r--r--pp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.h b/pp.h
index e763b2e72a..55efa0ba4e 100644
--- a/pp.h
+++ b/pp.h
@@ -351,7 +351,7 @@ Does not use C<TARG>. See also C<L</XPUSHu>>, C<L</mPUSHu>> and C<L</PUSHu>>.
* this just gives a safe false positive
*/
-# define _EXTEND_NEEDS_GROW(p,n) ((n) < 0 || PL_stack_max - p < (n))
+# define _EXTEND_NEEDS_GROW(p,n) ((n) < 0 || PL_stack_max - (p) < (n))
/* EXTEND_SKIP(): used for where you would normally call EXTEND(), but