summaryrefslogtreecommitdiff
path: root/dump.c
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2017-11-13 11:03:15 +0000
committerDavid Mitchell <davem@iabyn.com>2017-11-13 12:23:19 +0000
commitb5bf9f73a7cc9feabf29609f45df824fed127956 (patch)
tree6e9804b6f690d30079b95a969d4449d13f2fc7de /dump.c
parentbc60657c80df1e21e2a12017077425d3b6db6cfe (diff)
downloadperl-b5bf9f73a7cc9feabf29609f45df824fed127956.tar.gz
rename op_aux field from 'size' to 'ssize'
This part of the op_aux union was added for OP_MULTICONCAT; its actually of type SSize_t, so rename it to ssize to better reflect that it's signed. This should make no functional difference.
Diffstat (limited to 'dump.c')
-rw-r--r--dump.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dump.c b/dump.c
index bf01207e24..5dac007825 100644
--- a/dump.c
+++ b/dump.c
@@ -2757,10 +2757,10 @@ Perl_multiconcat_stringify(pTHX_ const OP *o)
nargs = aux[PERL_MULTICONCAT_IX_NARGS].uv;
s = aux[PERL_MULTICONCAT_IX_PLAIN_PV].pv;
- len = aux[PERL_MULTICONCAT_IX_PLAIN_LEN].size;
+ len = aux[PERL_MULTICONCAT_IX_PLAIN_LEN].ssize;
if (!s) {
s = aux[PERL_MULTICONCAT_IX_UTF8_PV].pv;
- len = aux[PERL_MULTICONCAT_IX_UTF8_LEN].size;
+ len = aux[PERL_MULTICONCAT_IX_UTF8_LEN].ssize;
sv_catpvs(out, "UTF8 ");
}
pv_pretty(out, s, len, 50,
@@ -2772,7 +2772,7 @@ Perl_multiconcat_stringify(pTHX_ const OP *o)
lens = aux + PERL_MULTICONCAT_IX_LENGTHS;
nargs++;
while (nargs-- > 0) {
- Perl_sv_catpvf(aTHX_ out, ",%" IVdf, (IV)lens->size);
+ Perl_sv_catpvf(aTHX_ out, ",%" IVdf, (IV)lens->ssize);
lens++;
}
return out;