summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-12-27 21:55:54 -0700
committerKarl Williamson <khw@cpan.org>2020-01-03 21:55:15 -0700
commit1b292063004c9bbdfe307aadd8beb72df25e7c2f (patch)
tree716f03aab60e0e73553553885ce6a958eac6e97a /proto.h
parent40d2776f3505d22a2b1309ae2c3bf28bcb1d9016 (diff)
downloadperl-1b292063004c9bbdfe307aadd8beb72df25e7c2f.tar.gz
Change parameter type of static fcn
This makes the first parameter consistent with the other similar parameter.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index c7aedc06b1..20649fa8cd 100644
--- a/proto.h
+++ b/proto.h
@@ -126,7 +126,7 @@ PERL_CALLCONV char * Perl__byte_dump_string(pTHX_ const U8 * const start, const
PERL_CALLCONV void Perl__force_out_malformed_utf8_message(pTHX_ const U8 *const p, const U8 * const e, const U32 flags, const bool die_here);
#define PERL_ARGS_ASSERT__FORCE_OUT_MALFORMED_UTF8_MESSAGE \
assert(p); assert(e)
-PERL_CALLCONV Size_t Perl__inverse_folds(pTHX_ const UV cp, unsigned int * first_folds_to, const U32 ** remaining_folds_to)
+PERL_CALLCONV Size_t Perl__inverse_folds(pTHX_ const UV cp, U32 * first_folds_to, const U32 ** remaining_folds_to)
__attribute__warn_unused_result__;
#define PERL_ARGS_ASSERT__INVERSE_FOLDS \
assert(first_folds_to); assert(remaining_folds_to)