diff options
author | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-02-15 04:23:33 +0000 |
---|---|---|
committer | normal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2014-02-15 04:23:33 +0000 |
commit | 54e4583d527a1476d75310dac0be32d659a6633a (patch) | |
tree | 2137535717933297b875f075566e407965a0d326 /probes_helper.h | |
parent | dfd26e3a473aa76fce20dc1359b0c4ab1d88eea9 (diff) | |
download | ruby-54e4583d527a1476d75310dac0be32d659a6633a.tar.gz |
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
Diffstat (limited to 'probes_helper.h')
-rw-r--r-- | probes_helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
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; \ |