summaryrefslogtreecommitdiff
path: root/XSUB.h
diff options
context:
space:
mode:
authorMarcus Holland-Moritz <mhx-perl@gmx.net>2006-04-26 19:18:09 +0000
committerMarcus Holland-Moritz <mhx-perl@gmx.net>2006-04-26 19:18:09 +0000
commit5f887a311898cc2bf99ef46debb8cd05eb8490c3 (patch)
treed6c7f201e4292516efb95a881c3ec9d197c02a83 /XSUB.h
parentbb7a0f5422600fd7de7806825a1300a577b7e61f (diff)
downloadperl-5f887a311898cc2bf99ef46debb8cd05eb8490c3.tar.gz
Change type of temporary padoff_du used in dUNDERBAR
from I32 to PADOFFSET, which is more correct (and fixes a warning in Devel::PPPort). p4raw-id: //depot/perl@27968
Diffstat (limited to 'XSUB.h')
-rw-r--r--XSUB.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/XSUB.h b/XSUB.h
index 9832b7d5e1..f6b4f9d7a5 100644
--- a/XSUB.h
+++ b/XSUB.h
@@ -148,7 +148,7 @@ is a lexical $_ in scope.
#define XSINTERFACE_FUNC_SET(cv,f) \
CvXSUBANY(cv).any_dxptr = (void (*) (pTHX_ void*))(f)
-#define dUNDERBAR I32 padoff_du = find_rundefsvoffset()
+#define dUNDERBAR PADOFFSET padoff_du = find_rundefsvoffset()
#define UNDERBAR ((padoff_du == NOT_IN_PAD \
|| PAD_COMPNAME_FLAGS_isOUR(padoff_du)) \
? DEFSV : PAD_SVl(padoff_du))