From 34cfdd2f67dca44cb677d9a06b8687cfc6172892 Mon Sep 17 00:00:00 2001 From: ko1 Date: Tue, 8 Dec 2015 15:18:30 +0000 Subject: * compile.c (ibf_load_setup): cast to int. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index 1f4f649e7d..e34baa2f27 100644 --- a/compile.c +++ b/compile.c @@ -8195,7 +8195,7 @@ ibf_load_iseq(const struct ibf_load *load, const rb_iseq_t *index_iseq) static void ibf_load_setup(struct ibf_load *load, VALUE loader_obj, VALUE str) { - if (RSTRING_LENINT(str) < sizeof(struct ibf_header)) { + if (RSTRING_LENINT(str) < (int)sizeof(struct ibf_header)) { rb_raise(rb_eRuntimeError, "broken binary format"); } RB_OBJ_WRITE(loader_obj, &load->str, str); -- cgit v1.2.3