summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-15 04:23:33 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-02-15 04:23:33 +0000
commit54e4583d527a1476d75310dac0be32d659a6633a (patch)
tree2137535717933297b875f075566e407965a0d326
parentdfd26e3a473aa76fce20dc1359b0c4ab1d88eea9 (diff)
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
-rw-r--r--ChangeLog4
-rw-r--r--probes_helper.h2
2 files changed, 5 insertions, 1 deletions
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 <e@80x24.org>
+
+ * probes_helper.h (RUBY_DTRACE_HOOK): correct type for _id
+
Sat Feb 15 11:47:47 2014 Tanaka Akira <akr@fsij.org>
* 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; \