@@ -11268,7 +11268,7 @@ ibf_load_object(const struct ibf_load *load, VALUE object_index)
11268
11268
11269
11269
#if IBF_ISEQ_DEBUG
11270
11270
fprintf (stderr , "ibf_load_object: list=%#x offsets=%p offset=%#x\n" ,
11271
- load -> current_buffer -> obj_list_offset , offsets , offset );
11271
+ load -> current_buffer -> obj_list_offset , ( void * ) offsets , offset );
11272
11272
fprintf (stderr , "ibf_load_object: type=%#x special=%d frozen=%d internal=%d\n" ,
11273
11273
header .type , header .special_const , header .frozen , header .internal );
11274
11274
#endif
@@ -11458,7 +11458,7 @@ ibf_load_iseq(const struct ibf_load *load, const rb_iseq_t *index_iseq)
11458
11458
11459
11459
#if IBF_ISEQ_DEBUG
11460
11460
fprintf (stderr , "ibf_load_iseq: index_iseq=%p iseq_list=%p\n" ,
11461
- index_iseq , (void * )load -> iseq_list );
11461
+ ( void * ) index_iseq , (void * )load -> iseq_list );
11462
11462
#endif
11463
11463
if (iseq_index == -1 ) {
11464
11464
return NULL ;
@@ -11475,27 +11475,27 @@ ibf_load_iseq(const struct ibf_load *load, const rb_iseq_t *index_iseq)
11475
11475
else {
11476
11476
rb_iseq_t * iseq = iseq_imemo_alloc ();
11477
11477
#if IBF_ISEQ_DEBUG
11478
- fprintf (stderr , "ibf_load_iseq: new iseq=%p\n" , iseq );
11478
+ fprintf (stderr , "ibf_load_iseq: new iseq=%p\n" , ( void * ) iseq );
11479
11479
#endif
11480
11480
FL_SET (iseq , ISEQ_NOT_LOADED_YET );
11481
11481
iseq -> aux .loader .obj = load -> loader_obj ;
11482
11482
iseq -> aux .loader .index = iseq_index ;
11483
11483
#if IBF_ISEQ_DEBUG
11484
11484
fprintf (stderr , "ibf_load_iseq: iseq=%p loader_obj=%p index=%d\n" ,
11485
- iseq , (void * )load -> loader_obj , iseq_index );
11485
+ ( void * ) iseq , (void * )load -> loader_obj , iseq_index );
11486
11486
#endif
11487
11487
rb_ary_store (load -> iseq_list , iseq_index , (VALUE )iseq );
11488
11488
11489
11489
#if !USE_LAZY_LOAD
11490
11490
#if IBF_ISEQ_DEBUG
11491
- fprintf (stderr , "ibf_load_iseq: loading iseq=%p\n" , iseq );
11491
+ fprintf (stderr , "ibf_load_iseq: loading iseq=%p\n" , ( void * ) iseq );
11492
11492
#endif
11493
11493
rb_ibf_load_iseq_complete (iseq );
11494
11494
#endif /* !USE_LAZY_LOAD */
11495
11495
11496
11496
#if IBF_ISEQ_DEBUG
11497
11497
fprintf (stderr , "ibf_load_iseq: iseq=%p loaded %p\n" ,
11498
- iseq , load -> iseq );
11498
+ ( void * ) iseq , ( void * ) load -> iseq );
11499
11499
#endif
11500
11500
return iseq ;
11501
11501
}
0 commit comments