File tree Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Expand file tree Collapse file tree 2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -73,15 +73,6 @@ class PgPatches
73
73
replacement : '#define CACHE_LOOKUP(this, klass) ( &this->cache_row[(unsigned long)(rb_tr_obj_id(klass)) & 0xff] )'
74
74
} ,
75
75
] ,
76
- 'pg_type_map.c' => [
77
- # The result of rb_object_classname is used in an exception
78
- # string, We turn it into a ruby string to work round a bug in
79
- # our string formatting.
80
- {
81
- match : 'rb_obj_classname(self)' ,
82
- replacement : 'rb_str_new_cstr(rb_obj_classname(self))'
83
- }
84
- ] ,
85
76
}
86
77
}
87
78
end
Original file line number Diff line number Diff line change @@ -324,8 +324,7 @@ static VALUE
324
324
ossl_x509name_inspect (VALUE self )
325
325
{
326
326
return rb_enc_sprintf (rb_utf8_encoding (), "#<%" PRIsVALUE " %" PRIsVALUE ">" ,
327
- (long ) rb_obj_class (self ), (long ) ossl_x509name_to_utf8 (self ));
328
- // TruffleRuby: added the two (long) casts above
327
+ rb_obj_class (self ), ossl_x509name_to_utf8 (self ));
329
328
}
330
329
331
330
/*
You can’t perform that action at this time.
0 commit comments