diff options
author | Yves Orton <demerphq@gmail.com> | 2016-10-19 11:14:26 +0200 |
---|---|---|
committer | Yves Orton <demerphq@gmail.com> | 2016-10-19 13:28:01 +0200 |
commit | 9aa3b533bfed3bd13a64b9eb6c9f65d894fffd8c (patch) | |
tree | b7e2711db4762dc438381fa43c7a6a7a993ad9e2 /pp_ctl.c | |
parent | 500f3e18b91e55a2f60dfce9c896bac7c42c7e12 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1139,7 +1139,7 @@ PP(pp_flip) RETURNOP(((LOGOP*)cUNOP->op_first)->op_other); } } - sv_setpvs(TARG, ""); + SvPVCLEAR(TARG); SETs(targ); RETURN; } |