From 54e4583d527a1476d75310dac0be32d659a6633a Mon Sep 17 00:00:00 2001 From: normal Date: Sat, 15 Feb 2014 04:23:33 +0000 Subject: probes_helper.h (RUBY_DTRACE_HOOK): correct type for _id * probes_helper.h (RUBY_DTRACE_HOOK): correct type for _id I want to experiment with uint32_t ID git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ probes_helper.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4881cec769..712d53c637 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Feb 15 13:22:28 2014 Eric Wong + + * probes_helper.h (RUBY_DTRACE_HOOK): correct type for _id + Sat Feb 15 11:47:47 2014 Tanaka Akira * bignum.c (rb_big_cmp): Avoid bignum allocation for comparison diff --git a/probes_helper.h b/probes_helper.h index 12a18dcb34..f01cbc374a 100644 --- a/probes_helper.h +++ b/probes_helper.h @@ -10,7 +10,7 @@ VALUE rb_class_path_no_cache(VALUE _klass); do { \ if (RUBY_DTRACE_##name##_ENABLED()) { \ VALUE _klass = (klazz); \ - VALUE _id = (id); \ + ID _id = (id); \ const char * classname; \ const char * methodname; \ const char * filename; \ -- cgit v1.2.3