summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2021-04-09 12:18:22 -0600
committerKarl Williamson <khw@cpan.org>2022-09-09 13:40:26 -0600
commit932a38d1a532eec8faccdcb6e4ce4d023fbf70be (patch)
tree28d84a7d600ea41abba0c5ee1d74e1df173eb9ec /sv.c
parent5d4670cb4fb4c4ee3bbe650f4a24316373ce9025 (diff)
downloadperl-932a38d1a532eec8faccdcb6e4ce4d023fbf70be.tar.gz
sv.c: Comments white-space only
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sv.c b/sv.c
index 172a1faa5e..a7a004400d 100644
--- a/sv.c
+++ b/sv.c
@@ -4430,11 +4430,11 @@ Perl_sv_setsv_flags(pTHX_ SV *dsv, SV* ssv, const I32 flags)
* be allocated it is still not worth swiping PADTMPs for short
* strings, as the savings here are small.
*
- * If swiping is not an option, then we see whether it is
- * worth using copy-on-write. If the lhs already has a buf-
- * fer big enough and the string is short, we skip it and fall back
- * to method 3, since memcpy is faster for short strings than the
- * later bookkeeping overhead that copy-on-write entails.
+ * If swiping is not an option, then we see whether it is worth using
+ * copy-on-write. If the lhs already has a buffer big enough and the
+ * string is short, we skip it and fall back to method 3, since memcpy
+ * is faster for short strings than the later bookkeeping overhead that
+ * copy-on-write entails.
* If the rhs is not a copy-on-write string yet, then we also
* consider whether the buffer is too large relative to the string
@@ -8420,7 +8420,7 @@ Perl_sv_collxfrm_flags(pTHX_ SV *const sv, STRLEN *const nxp, const I32 flags)
Safefree(mg->mg_ptr);
s = SvPV_flags_const(sv, len, flags);
- if ((xf = mem_collxfrm_(s, len, &xlen, cBOOL(SvUTF8(sv))))) {
+ if ((xf = mem_collxfrm_(s, len, &xlen, cBOOL(SvUTF8(sv))))) {
if (! mg) {
mg = sv_magicext(sv, 0, PERL_MAGIC_collxfrm, &PL_vtbl_collxfrm,
0, 0);