File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 70
70
REBCNT cnt = 0 ;
71
71
72
72
cp = buf ;
73
- for (l = 0 ; l < max_lines ; l ++ ) {
73
+ for (l = 0 ; ( int ) l < max_lines ; l ++ ) {
74
74
cp = Form_Hex_Pad (cp , (REBUPT ) bp , 8 );
75
75
76
76
* cp ++ = ':' ;
Original file line number Diff line number Diff line change 202
202
bodi = VAL_INDEX (D_ARG (mode + 2 ));
203
203
204
204
// Starting location when past end with negative skip:
205
- if (inc < 0 && VAL_INDEX (var ) >= ( REBINT ) VAL_TAIL (var )) {
205
+ if (inc < 0 && VAL_INDEX (var ) >= VAL_TAIL (var )) {
206
206
VAL_INDEX (var ) = (REBINT )VAL_TAIL (var ) + inc ;
207
207
}
208
208
Original file line number Diff line number Diff line change @@ -783,7 +783,7 @@ ConversionResult ConvertUTF8toUTF32 (
783
783
784
784
// Check that we have enough valid source bytes:
785
785
if (len ) {
786
- if (slen + 1 > * len ) return 0 ;
786
+ if (( REBCNT ) slen + 1 > * len ) return 0 ;
787
787
}
788
788
else {
789
789
for (; slen >= 0 ; slen -- )
Original file line number Diff line number Diff line change 437
437
438
438
if (month < 1 || month > 12 ) return FALSE;
439
439
440
- if (year > MAX_YEAR || day < 1 || day > (REBINT )(Month_Lengths [month - 1 ])) return FALSE;
440
+ if (year > MAX_YEAR || day < 1 || day > (REBCNT )(Month_Lengths [month - 1 ])) return FALSE;
441
441
442
442
// Check February for leap year or century:
443
443
if (month == 2 && day == 29 ) {
You can’t perform that action at this time.
0 commit comments