From: Nicholas Clark Date: Wed, 19 Apr 2006 07:55:18 +0000 (+0000) Subject: Fix compilation of microperl, which doesn't have INT_MAX. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=39cd7a593a348b713bd3e45241789bcc2a458c1a;p=p5sagit%2Fp5-mst-13.2.git Fix compilation of microperl, which doesn't have INT_MAX. p4raw-id: //depot/perl@27895 --- diff --git a/toke.c b/toke.c index dc94328..6076484 100644 --- a/toke.c +++ b/toke.c @@ -2636,7 +2636,14 @@ Perl_filter_read(pTHX_ int idx, SV *buf_sv, int maxlen) /* This API is bad. It should have been using unsigned int for maxlen. Not sure if we want to change the API, but if not we should sanity check the value here. */ - const unsigned int correct_length = maxlen < 0 ? INT_MAX : maxlen; + const unsigned int correct_length + = maxlen < 0 ? +#ifdef PERL_MICRO + 0x7FFFFFFF +#else + INT_MAX +#endif + : maxlen; if (!PL_rsfp_filters) return -1;