summaryrefslogtreecommitdiff
path: root/op.h
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 /op.h
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 'op.h')
-rw-r--r--op.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.h b/op.h
index 513fc655fd..eb62c946fc 100644
--- a/op.h
+++ b/op.h
@@ -189,7 +189,7 @@ typedef union {
IV iv;
UV uv;
char *pv;
- SSize_t size;
+ SSize_t ssize;
} UNOP_AUX_item;
#ifdef USE_ITHREADS