diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-16 04:40:11 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-16 04:40:11 +0000 |
commit | aaa01efb958a17b89b2e347faf765bc0fe1ad479 (patch) | |
tree | 87aa1b283aa06247a9492e7e4d6fbf536b621611 /gc.h | |
parent | 438b8706a7b4353a2208debaaf2fa2335ea94b1a (diff) | |
download | ruby-aaa01efb958a17b89b2e347faf765bc0fe1ad479.tar.gz |
* gc.h (rb_gc_debug_body): constified.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25366 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.h')
-rw-r--r-- | gc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -26,7 +26,7 @@ rb_gc_debug_indent(void) } static void -rb_gc_debug_body(char *mode, char *msg, int st, void *ptr) +rb_gc_debug_body(const char *mode, const char *msg, int st, void *ptr) { if (st == 0) { ruby_gc_debug_indent--; |