Skip to content

Commit 2cca9d3

Browse files
committed
avoid comparison between signed and unsigned integer; ref #3312
1 parent f1cf6ef commit 2cca9d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mrbgems/mruby-compiler/core/parse.y

+1-1
Original file line numberDiff line numberDiff line change
@@ -3753,7 +3753,7 @@ scan_hex(const int *start, int len, int *retlen)
37533753
}
37543754

37553755
static int32_t
3756-
read_escape_unicode(parser_state *p, size_t limit)
3756+
read_escape_unicode(parser_state *p, int limit)
37573757
{
37583758
int32_t c;
37593759
int buf[9];

0 commit comments

Comments
 (0)