зеркало из https://github.com/github/ruby.git
* vm_dump.c (rb_print_backtrace): return value of libexec's backtrace
is size_t, so simply cast as int. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50553 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
9e80fb0751
Коммит
dd9265ecf3
|
@ -1,3 +1,8 @@
|
|||
Wed May 20 11:23:24 2015 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* vm_dump.c (rb_print_backtrace): return value of libexec's backtrace
|
||||
is size_t, so simply cast as int.
|
||||
|
||||
Tue May 19 18:54:41 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* iseq.c (rb_iseq_compile_with_option): check source type, must be
|
||||
|
|
|
@ -690,7 +690,7 @@ rb_print_backtrace(void)
|
|||
#if HAVE_BACKTRACE
|
||||
#define MAX_NATIVE_TRACE 1024
|
||||
static void *trace[MAX_NATIVE_TRACE];
|
||||
int n = backtrace(trace, MAX_NATIVE_TRACE);
|
||||
int n = (int)backtrace(trace, MAX_NATIVE_TRACE);
|
||||
#if defined(USE_ELF) && defined(HAVE_DLADDR)
|
||||
rb_dump_backtrace_with_lines(n, trace);
|
||||
#else
|
||||
|
|
Загрузка…
Ссылка в новой задаче