From df3ae4e2b57431a6d2e85e97c997d9b96b4dcb41 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@24889 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/ruby.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index 6de6ba02e6..d027c55677 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 v1.2.3