summaryrefslogtreecommitdiff
path: root/pp_sys.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2017-12-20 13:07:46 +0000
committerDavid Mitchell <davem@iabyn.com>2018-01-31 18:26:18 +0000
commit8d629a78e79c19651f98fd50647911d78b7de698 (patch)
tree9db4ee23715bf87a0eb2bda2f737832b36cd6d2f /pp_sys.c
parentd6189047176e14277a152d1c4456d167adda6969 (diff)
downloadperl-8d629a78e79c19651f98fd50647911d78b7de698.tar.gz
pp_warn: use MEXTEND rather than EXTEND
RT #132602
Diffstat (limited to 'pp_sys.c')
-rw-r--r--pp_sys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_sys.c b/pp_sys.c
index 5154b9baa8..4ae475d460 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -417,7 +417,7 @@ PP(pp_warn)
}
else if (SP == MARK) {
exsv = &PL_sv_no;
- EXTEND(SP, 1);
+ MEXTEND(SP, 1);
SP = MARK + 1;
}
else {