diff options
author | David Mitchell <davem@iabyn.com> | 2017-11-13 11:03:15 +0000 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2017-11-13 12:23:19 +0000 |
commit | b5bf9f73a7cc9feabf29609f45df824fed127956 (patch) | |
tree | 6e9804b6f690d30079b95a969d4449d13f2fc7de /op.h | |
parent | bc60657c80df1e21e2a12017077425d3b6db6cfe (diff) | |
download | perl-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 'op.h')
-rw-r--r-- | op.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -189,7 +189,7 @@ typedef union { IV iv; UV uv; char *pv; - SSize_t size; + SSize_t ssize; } UNOP_AUX_item; #ifdef USE_ITHREADS |