summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2016-10-19 11:14:26 +0200
committerYves Orton <demerphq@gmail.com>2016-10-19 13:28:01 +0200
commit9aa3b533bfed3bd13a64b9eb6c9f65d894fffd8c (patch)
treeb7e2711db4762dc438381fa43c7a6a7a993ad9e2 /pp_ctl.c
parent500f3e18b91e55a2f60dfce9c896bac7c42c7e12 (diff)
downloadperl-9aa3b533bfed3bd13a64b9eb6c9f65d894fffd8c.tar.gz
pp_ctl.c: use new SvPVCLEAR and constant string friendly macros
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 36b68b61fb..87c669d5d9 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -1139,7 +1139,7 @@ PP(pp_flip)
RETURNOP(((LOGOP*)cUNOP->op_first)->op_other);
}
}
- sv_setpvs(TARG, "");
+ SvPVCLEAR(TARG);
SETs(targ);
RETURN;
}