From 358ae766401ee91d81c34b60447e83f757b4b1ff Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 13 Sep 2009 03:10:24 +0000 Subject: * include/ruby/ruby.h (rb_special_const_p): fixed typo. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24889 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/ruby.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/ruby') diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index 6de6ba02e..d027c5567 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -1270,7 +1270,7 @@ rb_type(VALUE obj) #ifdef __GNUC__ #define rb_special_const_p(obj) \ - __extension__ ({VALUE special_const_obj = (obj); (int)(SPECIAL_CONST_P(obj) ? Qtrue : Qfalse);}) + __extension__ ({VALUE special_const_obj = (obj); (int)(SPECIAL_CONST_P(special_const_obj) ? Qtrue : Qfalse);}) #else static inline int rb_special_const_p(VALUE obj) -- cgit