summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-11-27 22:37:41 +0000
committerNicholas Clark <nick@ccl4.org>2008-11-27 22:37:41 +0000
commit94d1e7066cadf6c0f535c5b253acfe24a6200844 (patch)
treee88ba68892594240e7c4537c8d68ecc3a6d5c3e0 /proto.h
parent1d0620e07f09f003db2a6b3bb16891110785edf3 (diff)
downloadperl-94d1e7066cadf6c0f535c5b253acfe24a6200844.tar.gz
S_mro_get_linear_isa_*() should have an *un*signed level.
[Unless it's a signed concept, use an usigned type.] p4raw-id: //depot/perl@34948
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index a2c99a2acf..59192eae6e 100644
--- a/proto.h
+++ b/proto.h
@@ -6568,12 +6568,12 @@ PERL_CALLCONV AV* Perl_mro_get_linear_isa(pTHX_ HV* stash)
assert(stash)
#if defined(PERL_IN_MRO_C) || defined(PERL_DECL_PROT)
-STATIC AV* S_mro_get_linear_isa_c3(pTHX_ HV* stash, I32 level)
+STATIC AV* S_mro_get_linear_isa_c3(pTHX_ HV* stash, U32 level)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_MRO_GET_LINEAR_ISA_C3 \
assert(stash)
-STATIC AV* S_mro_get_linear_isa_dfs(pTHX_ HV* stash, I32 level)
+STATIC AV* S_mro_get_linear_isa_dfs(pTHX_ HV* stash, U32 level)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_MRO_GET_LINEAR_ISA_DFS \
assert(stash)