зеркало из https://github.com/github/ruby.git
* ext/dl/cptr.c (rb_dlptr_inspect): fix format specifiers.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27166 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
7271a56417
Коммит
be30c131da
|
@ -1,3 +1,7 @@
|
|||
Fri Apr 2 07:00:28 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/dl/cptr.c (rb_dlptr_inspect): fix format specifiers.
|
||||
|
||||
Fri Apr 2 05:38:17 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* include/ruby/ruby.h (InitVM): calls per-VM initialization in
|
||||
|
|
|
@ -388,7 +388,7 @@ rb_dlptr_inspect(VALUE self)
|
|||
char str[1024];
|
||||
|
||||
TypedData_Get_Struct(self, struct ptr_data, &dlptr_data_type, data);
|
||||
snprintf(str, 1023, "#<%s:%p ptr=%#lx size=%ld free=%#lx>",
|
||||
snprintf(str, 1023, "#<%s:%p ptr=%p size=%ld free=%p>",
|
||||
rb_class2name(CLASS_OF(self)), data, data->ptr, data->size, data->free);
|
||||
return rb_str_new2(str);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче