summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-07-11 13:15:49 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-07-11 13:15:49 +0000
commitfd1bc7ebd07df539346875ee9afb9361449a1176 (patch)
tree8d37c69380d933399b9b32a5b00f3d33f3aa3c23 /op.h
parent1fcf4c126eb604a2803256137e52891a03090e84 (diff)
downloadperl-fd1bc7ebd07df539346875ee9afb9361449a1176.tar.gz
Make the I32 an IV to preserve structure alignment and size.
p4raw-id: //depot/perl@11275
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 352d358f5d..33afa0a528 100644
--- a/op.h
+++ b/op.h
@@ -236,7 +236,7 @@ struct pmop {
OP * op_pmreplstart;
PMOP * op_pmnext; /* list of all scanpats */
#ifdef USE_ITHREADS
- I32 op_pmoffset;
+ IV op_pmoffset;
#else
REGEXP * op_pmregexp; /* compiled expression */
#endif